From c78ae21bb935033aa0084f36a50807e780729bcd Mon Sep 17 00:00:00 2001 From: minhkhul Date: Tue, 23 Jul 2024 19:26:28 -0400 Subject: [PATCH 01/53] nssp patching code --- nssp/README.md | 30 ++++++++++++++++++++++++++++++ nssp/delphi_nssp/pull.py | 34 +++++++++++++++++++++------------- nssp/delphi_nssp/run.py | 17 ++++++++++------- 3 files changed, 61 insertions(+), 20 deletions(-) diff --git a/nssp/README.md b/nssp/README.md index 4bba6f626..8eb0c9864 100644 --- a/nssp/README.md +++ b/nssp/README.md @@ -73,3 +73,33 @@ with the percentage of code covered by the tests. None of the linting or unit tests should fail, and the code lines that are not covered by unit tests should be small and should not include critical sub-routines. + +## Running Patches: +A daily backup of from source in the form of csv files can be found on bigchunk-dev-02. Ask @minhkhul for more details. + +You can also generate your own backup from source by setting up a cron job that runs the following .py every day when a pipeline outtage is going on on our side but aource api is still available: +``` +import numpy as np +import pandas as pd +from sodapy import Socrata +from datetime import date + +today = date.today() +socrata_token = 'FILL_YOUR_OWN_TOKEN_HERE' +client = Socrata("data.cdc.gov", socrata_token) +results = [] +offset = 0 +limit = 50000 # maximum limit allowed by SODA 2.0 +while True: + page = client.get("rdmq-nq56", limit=limit, offset=offset) + if not page: + break # exit the loop if no more results + results.extend(page) + offset += limit +df_ervisits = pd.DataFrame.from_records(results) +df_ervisits.to_csv(f'~/{today}.csv', index=False) +``` +When you're ready to create patching data for a specific date range output in batch issue format, adjust `params.json` in accordance with instructions in `patch.py`, move these backup csv files into `source_dir`, then run +``` +env/bin/python -m delphi_nssp.patch +``` \ No newline at end of file diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index ece94fab4..a9130f7d9 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -27,7 +27,7 @@ def warn_string(df, type_dict): return warn -def pull_nssp_data(socrata_token: str): +def pull_nssp_data(socrata_token: str, issue_date: str = None, source_dir: str = None) -> pd.DataFrame: """Pull the latest NSSP ER visits data, and conforms it into a dataset. The output dataset has: @@ -39,6 +39,11 @@ def pull_nssp_data(socrata_token: str): ---------- socrata_token: str My App Token for pulling the NWSS data (could be the same as the nchs data) + issue_date: Optional[str] + (patching mode only) YYYY-MM-DD formatted date of the issue to pull data for. + source_dir: Optional[str] + (patching mode only) Path to the directory containing the source data csv files. + The files in source_dir are expected to be named yyyy-mm-dd.csv test_file: Optional[str] When not null, name of file from which to read test data @@ -47,18 +52,21 @@ def pull_nssp_data(socrata_token: str): pd.DataFrame Dataframe as described above. """ - # Pull data from Socrata API - client = Socrata("data.cdc.gov", socrata_token) - results = [] - offset = 0 - limit = 50000 # maximum limit allowed by SODA 2.0 - while True: - page = client.get("rdmq-nq56", limit=limit, offset=offset) - if not page: - break # exit the loop if no more results - results.extend(page) - offset += limit - df_ervisits = pd.DataFrame.from_records(results) + if not issue_date: + # Pull data from Socrata API + client = Socrata("data.cdc.gov", socrata_token) + results = [] + offset = 0 + limit = 50000 # maximum limit allowed by SODA 2.0 + while True: + page = client.get("rdmq-nq56", limit=limit, offset=offset) + if not page: + break # exit the loop if no more results + results.extend(page) + offset += limit + df_ervisits = pd.DataFrame.from_records(results) + else: + df_ervisits = pd.read_csv(f"{source_dir}/{issue_date}.csv") df_ervisits = df_ervisits.rename(columns={"week_end": "timestamp"}) df_ervisits = df_ervisits.rename(columns=SIGNALS_MAP) diff --git a/nssp/delphi_nssp/run.py b/nssp/delphi_nssp/run.py index 7c5a3ffac..ce4f3fef0 100644 --- a/nssp/delphi_nssp/run.py +++ b/nssp/delphi_nssp/run.py @@ -62,7 +62,7 @@ def logging(start_time, run_stats, logger): ) -def run_module(params): +def run_module(params, logger=None): """ Run the indicator. @@ -72,18 +72,21 @@ def run_module(params): Nested dictionary of parameters. """ start_time = time.time() - logger = get_structured_logger( - __name__, - filename=params["common"].get("log_filename"), - log_exceptions=params["common"].get("log_exceptions", True), - ) + issue_date = params.get("patch", {}).get("current_issue", None) + source_dir = params.get("patch", {}).get("source_dir", None) + if not logger: + logger = get_structured_logger( + __name__, + filename=params["common"].get("log_filename"), + log_exceptions=params["common"].get("log_exceptions", True), + ) export_dir = params["common"]["export_dir"] socrata_token = params["indicator"]["socrata_token"] run_stats = [] ## build the base version of the signal at the most detailed geo level you can get. ## compute stuff here or farm out to another function or file - df_pull = pull_nssp_data(socrata_token) + df_pull = pull_nssp_data(socrata_token, issue_date, source_dir) ## aggregate geo_mapper = GeoMapper() for signal in SIGNALS: From 7694c0a117aac66d48a555e9304b0838b2064f3a Mon Sep 17 00:00:00 2001 From: minhkhul Date: Tue, 23 Jul 2024 19:39:58 -0400 Subject: [PATCH 02/53] lint --- nssp/delphi_nssp/pull.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index a9130f7d9..caeeffefa 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -40,9 +40,9 @@ def pull_nssp_data(socrata_token: str, issue_date: str = None, source_dir: str = socrata_token: str My App Token for pulling the NWSS data (could be the same as the nchs data) issue_date: Optional[str] - (patching mode only) YYYY-MM-DD formatted date of the issue to pull data for. + (patching mode only) YYYY-MM-DD formatted date of the issue to pull data for source_dir: Optional[str] - (patching mode only) Path to the directory containing the source data csv files. + (patching mode only) Path to the directory containing the source data csv files The files in source_dir are expected to be named yyyy-mm-dd.csv test_file: Optional[str] When not null, name of file from which to read test data From a3ed4c26dbabb54c2169c1f35aa9f95ffedc2eba Mon Sep 17 00:00:00 2001 From: minhkhul Date: Wed, 24 Jul 2024 14:48:51 -0400 Subject: [PATCH 03/53] add test --- nssp/tests/source_dir/2021-01-02.csv | 2 ++ nssp/tests/test_patch.py | 38 ++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 nssp/tests/source_dir/2021-01-02.csv create mode 100644 nssp/tests/test_patch.py diff --git a/nssp/tests/source_dir/2021-01-02.csv b/nssp/tests/source_dir/2021-01-02.csv new file mode 100644 index 000000000..b783f0162 --- /dev/null +++ b/nssp/tests/source_dir/2021-01-02.csv @@ -0,0 +1,2 @@ +week_end,geography,county,percent_visits_combined,percent_visits_covid,percent_visits_influenza,percent_visits_rsv,percent_visits_smoothed,percent_visits_smoothed_covid,percent_visits_smoothed_1,percent_visits_smoothed_rsv,ed_trends_covid,ed_trends_influenza,ed_trends_rsv,hsa,hsa_counties,hsa_nci_id,fips,trend_source +2022-10-01T00:00:00.000,United States,All,2.84,1.84,0.48,0.55,2.83,2.07,0.34,0.44,Decreasing,Increasing,Increasing,All,All,All,0,United States \ No newline at end of file diff --git a/nssp/tests/test_patch.py b/nssp/tests/test_patch.py new file mode 100644 index 000000000..09035aa63 --- /dev/null +++ b/nssp/tests/test_patch.py @@ -0,0 +1,38 @@ +import unittest +from unittest.mock import patch as mock_patch, call +from delphi_nssp.patch import patch +import os +import shutil + +class TestPatchModule(unittest.TestCase): + def test_patch(self): + with mock_patch('delphi_nssp.patch.run_module') as mock_run_module, \ + mock_patch('delphi_nssp.patch.get_structured_logger') as mock_get_structured_logger, \ + mock_patch('delphi_nssp.patch.read_params') as mock_read_params: + + mock_read_params.return_value = { + "common": { + "log_filename": "test.log" + }, + "patch": { + "start_issue": "2021-01-01", + "end_issue": "2021-01-02", + "patch_dir": "./patch_dir", + "source_dir": "./source_dir" + } + } + + patch() + + self.assertIn('current_issue', mock_read_params.return_value['patch']) + self.assertEqual(mock_read_params.return_value['patch']['current_issue'], '2021-01-02') + + self.assertTrue(os.path.isdir('./patch_dir')) + self.assertTrue(os.path.isdir('./patch_dir/issue_202053/nssp')) + self.assertFalse(os.path.isdir('./patch_dir/issue_202101/nssp')) + + # Clean up the created directories after the test + shutil.rmtree(mock_read_params.return_value["patch"]["patch_dir"]) + +if __name__ == '__main__': + unittest.main() \ No newline at end of file From 1628d34589e140075087ed694941c1cccff6f889 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Wed, 24 Jul 2024 14:58:56 -0400 Subject: [PATCH 04/53] add test --- nssp/delphi_nssp/patch.py | 83 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 nssp/delphi_nssp/patch.py diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py new file mode 100644 index 000000000..992f55146 --- /dev/null +++ b/nssp/delphi_nssp/patch.py @@ -0,0 +1,83 @@ +""" +This module is used for patching data in the delphi_nssp package. + +To use this module, you need to specify the range of issue dates in params.json, like so: + +{ + "common": { + ... + }, + "validation": { + ... + }, + "patch": { + "patch_dir": "/Users/minhkhuele/Desktop/delphi/covidcast-indicators/nssp/AprilPatch", + "start_issue": "2024-04-20", + "end_issue": "2024-04-21", + "source_dir": "/Users/minhkhuele/Desktop/delphi/covidcast-indicators/nssp/source_data" + } +} + +It will generate data for that range of issue dates, and store them in batch issue format: +[name-of-patch]/issue_[issue-date]/nssp/actual_data_file.csv +""" + +from datetime import datetime, timedelta +from os import makedirs, path + +from delphi_utils import get_structured_logger, read_params +from epiweeks import Week + +from .run import run_module + + +def patch(): + """ + Run the nssp indicator for a range of issue dates. + + The range of issue dates is specified in params.json using the following keys: + - "patch": Only used for patching data + - "start_date": str, YYYY-MM-DD format, first issue date + - "end_date": str, YYYY-MM-DD format, last issue date + - "patch_dir": str, directory to write all issues output + - "source_dir": str, directory to read source data from. + """ + params = read_params() + logger = get_structured_logger("delphi_nssp.patch", filename=params["common"]["log_filename"]) + + start_issue = datetime.strptime(params["patch"]["start_issue"], "%Y-%m-%d") + end_issue = datetime.strptime(params["patch"]["end_issue"], "%Y-%m-%d") + + logger.info(f"""Start patching {params["patch"]["patch_dir"]}""") + logger.info(f"""Start issue: {start_issue.strftime("%Y-%m-%d")}""") + logger.info(f"""End issue: {end_issue.strftime("%Y-%m-%d")}""") + logger.info(f"""Source from: {params["patch"]["source_dir"]}""") + logger.info(f"""Output to: {params["patch"]["patch_dir"]}""") + + makedirs(params["patch"]["patch_dir"], exist_ok=True) + + current_issue = start_issue + while current_issue <= end_issue: + logger.info(f"""Running issue {current_issue.strftime("%Y-%m-%d")}""") + + current_issue_source_csv = ( + f"""{params.get("patch", {}).get("source_dir")}/{current_issue.strftime("%Y-%m-%d")}.csv""" + ) + if not path.isfile(current_issue_source_csv): + logger.info(f"No source data at {current_issue_source_csv}") + current_issue += timedelta(days=1) + continue + + params["patch"]["current_issue"] = current_issue.strftime("%Y-%m-%d") + + current_issue_week = Week.fromdate(current_issue) + current_issue_dir = f"""{params["patch"]["patch_dir"]}/issue_{current_issue_week}/nssp""" + makedirs(f"{current_issue_dir}", exist_ok=True) + params["common"]["export_dir"] = f"""{current_issue_dir}""" + + run_module(params, logger) + current_issue += timedelta(days=1) + + +if __name__ == "__main__": + patch() From 2536b9415338bb8a7d51946085407a4fb839b2ab Mon Sep 17 00:00:00 2001 From: minhkhul Date: Wed, 24 Jul 2024 15:33:37 -0400 Subject: [PATCH 05/53] Add patching how-to to readme --- nssp/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nssp/README.md b/nssp/README.md index 8eb0c9864..4ff5a67fa 100644 --- a/nssp/README.md +++ b/nssp/README.md @@ -75,7 +75,7 @@ None of the linting or unit tests should fail, and the code lines that are not c should not include critical sub-routines. ## Running Patches: -A daily backup of from source in the form of csv files can be found on bigchunk-dev-02. Ask @minhkhul for more details. +A daily backup of from source in the form of csv files can be found on `bigchunk-dev-02` under `/common/source_backup/nssp`. Talk to your sysadmin for access. You can also generate your own backup from source by setting up a cron job that runs the following .py every day when a pipeline outtage is going on on our side but aource api is still available: ``` @@ -99,7 +99,7 @@ while True: df_ervisits = pd.DataFrame.from_records(results) df_ervisits.to_csv(f'~/{today}.csv', index=False) ``` -When you're ready to create patching data for a specific date range output in batch issue format, adjust `params.json` in accordance with instructions in `patch.py`, move these backup csv files into `source_dir`, then run +When you're ready to create patching data for a specific date range in batch issue format, adjust `params.json` in accordance with instructions in `patch.py`, move the backup csv files into your chosen `source_dir`, then run ``` env/bin/python -m delphi_nssp.patch ``` \ No newline at end of file From e4d45e57d5f962e9fee8cd0b9ce5b35e5ee75ed5 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Thu, 25 Jul 2024 13:19:27 -0400 Subject: [PATCH 06/53] adjust current_issue_dir name for weekly data instead of daily. --- nssp/delphi_nssp/patch.py | 10 ++++++++-- nssp/tests/test_patch.py | 6 ++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 992f55146..b067ca1d2 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -70,8 +70,14 @@ def patch(): params["patch"]["current_issue"] = current_issue.strftime("%Y-%m-%d") - current_issue_week = Week.fromdate(current_issue) - current_issue_dir = f"""{params["patch"]["patch_dir"]}/issue_{current_issue_week}/nssp""" + # current_issue_date can be different from params["patch"]["current_issue"] + # due to weekly cadence of nssp data. For weekly sources, issue dates in our + # db matches with first date of epiweek that the reporting date falls in, + # rather than reporting date itself. + current_issue_date = Week.fromdate(current_issue).startdate() + current_issue_dir = ( + f"""{params["patch"]["patch_dir"]}/issue_{current_issue_date.strftime("%Y%m%d")}/nssp""" + ) makedirs(f"{current_issue_dir}", exist_ok=True) params["common"]["export_dir"] = f"""{current_issue_dir}""" diff --git a/nssp/tests/test_patch.py b/nssp/tests/test_patch.py index 09035aa63..60e76aefc 100644 --- a/nssp/tests/test_patch.py +++ b/nssp/tests/test_patch.py @@ -28,8 +28,10 @@ def test_patch(self): self.assertEqual(mock_read_params.return_value['patch']['current_issue'], '2021-01-02') self.assertTrue(os.path.isdir('./patch_dir')) - self.assertTrue(os.path.isdir('./patch_dir/issue_202053/nssp')) - self.assertFalse(os.path.isdir('./patch_dir/issue_202101/nssp')) + self.assertTrue(os.path.isdir('./patch_dir/issue_20201227/nssp')) + self.assertFalse(os.path.isdir('./patch_dir/issue_20210101/nssp')) + self.assertFalse(os.path.isdir('./patch_dir/issue_20210101/nssp')) + self.assertFalse(os.path.isdir('./patch_dir/issue_20210103/nssp')) # Clean up the created directories after the test shutil.rmtree(mock_read_params.return_value["patch"]["patch_dir"]) From db906fc8bd61f6a11832155a9a21bf83518b0b8b Mon Sep 17 00:00:00 2001 From: minhkhul Date: Thu, 25 Jul 2024 13:24:19 -0400 Subject: [PATCH 07/53] lint --- nssp/delphi_nssp/patch.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index b067ca1d2..f4488250c 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -75,9 +75,7 @@ def patch(): # db matches with first date of epiweek that the reporting date falls in, # rather than reporting date itself. current_issue_date = Week.fromdate(current_issue).startdate() - current_issue_dir = ( - f"""{params["patch"]["patch_dir"]}/issue_{current_issue_date.strftime("%Y%m%d")}/nssp""" - ) + current_issue_dir = f"""{params["patch"]["patch_dir"]}/issue_{current_issue_date.strftime("%Y%m%d")}/nssp""" makedirs(f"{current_issue_dir}", exist_ok=True) params["common"]["export_dir"] = f"""{current_issue_dir}""" From 8f0bb320c5ede9bb4bc641ea94a3a544f04f1a3d Mon Sep 17 00:00:00 2001 From: minhkhul Date: Thu, 25 Jul 2024 13:32:15 -0400 Subject: [PATCH 08/53] adjust test for more cases --- nssp/tests/test_patch.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/nssp/tests/test_patch.py b/nssp/tests/test_patch.py index 60e76aefc..5c614cbf9 100644 --- a/nssp/tests/test_patch.py +++ b/nssp/tests/test_patch.py @@ -3,6 +3,7 @@ from delphi_nssp.patch import patch import os import shutil +from datetime import datetime, timedelta class TestPatchModule(unittest.TestCase): def test_patch(self): @@ -29,9 +30,15 @@ def test_patch(self): self.assertTrue(os.path.isdir('./patch_dir')) self.assertTrue(os.path.isdir('./patch_dir/issue_20201227/nssp')) - self.assertFalse(os.path.isdir('./patch_dir/issue_20210101/nssp')) - self.assertFalse(os.path.isdir('./patch_dir/issue_20210101/nssp')) - self.assertFalse(os.path.isdir('./patch_dir/issue_20210103/nssp')) + + start_date = datetime(2020, 12, 28) + end_date = datetime(2021, 1, 3) + date = start_date + + while date <= end_date: + date_str = date.strftime("%Y%m%d") + self.assertFalse(os.path.isdir(f'./patch_dir/issue_{date_str}/nssp')) + date += timedelta(days=1) # Clean up the created directories after the test shutil.rmtree(mock_read_params.return_value["patch"]["patch_dir"]) From 7f151f5d79ae87c0ac2fc34bb343282e535b4209 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Mon, 5 Aug 2024 23:01:33 -0400 Subject: [PATCH 09/53] add custom_run flag --- nssp/delphi_nssp/run.py | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/nssp/delphi_nssp/run.py b/nssp/delphi_nssp/run.py index ce4f3fef0..ad764599f 100644 --- a/nssp/delphi_nssp/run.py +++ b/nssp/delphi_nssp/run.py @@ -22,6 +22,7 @@ - "cache_dir": str, directory of locally cached data """ +import sys import time from datetime import datetime @@ -34,7 +35,6 @@ from .constants import AUXILIARY_COLS, CSV_COLS, GEOS, SIGNALS from .pull import pull_nssp_data - def add_needed_columns(df, col_names=None): """Short util to add expected columns not found in the dataset.""" if col_names is None: @@ -45,7 +45,6 @@ def add_needed_columns(df, col_names=None): df = add_default_nancodes(df) return df - def logging(start_time, run_stats, logger): """Boilerplate making logs.""" elapsed_time_in_seconds = round(time.time() - start_time, 2) @@ -72,21 +71,28 @@ def run_module(params, logger=None): Nested dictionary of parameters. """ start_time = time.time() - issue_date = params.get("patch", {}).get("current_issue", None) - source_dir = params.get("patch", {}).get("source_dir", None) + custom_run = params["common"].get("custom_run", False) + # logger doesn't exist yet means run_module is called from normal indicator run (instead of patching) if not logger: logger = get_structured_logger( __name__, filename=params["common"].get("log_filename"), log_exceptions=params["common"].get("log_exceptions", True), ) + if custom_run: + logger.warning("custom_run flag is on despite direct indicator run call. Normal indicator run continues.") + custom_run = False export_dir = params["common"]["export_dir"] socrata_token = params["indicator"]["socrata_token"] - run_stats = [] ## build the base version of the signal at the most detailed geo level you can get. ## compute stuff here or farm out to another function or file - df_pull = pull_nssp_data(socrata_token, issue_date, source_dir) + if custom_run: + issue_date = params.get("patch", {}).get("current_issue", None) + source_dir = params.get("patch", {}).get("source_dir", None) + df_pull = pull_nssp_data(socrata_token, issue_date, source_dir) + else: + df_pull = pull_nssp_data(socrata_token) ## aggregate geo_mapper = GeoMapper() for signal in SIGNALS: From c093349424f12fa489fc00211920c52b0c62cb95 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Tue, 6 Aug 2024 15:31:10 -0400 Subject: [PATCH 10/53] handle custom flag on but bad config --- nssp/delphi_nssp/patch.py | 12 +++++++++++- nssp/delphi_nssp/run.py | 1 - 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index f4488250c..48858fda0 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -22,6 +22,7 @@ [name-of-patch]/issue_[issue-date]/nssp/actual_data_file.csv """ +import sys from datetime import datetime, timedelta from os import makedirs, path @@ -31,6 +32,12 @@ from .run import run_module +def good_patch_config(params): + if not all(key in params.get("patch", {}) for key in ["start_issue", "end_issue", "patch_dir", "source_dir"]): + return False + return True + + def patch(): """ Run the nssp indicator for a range of issue dates. @@ -44,7 +51,10 @@ def patch(): """ params = read_params() logger = get_structured_logger("delphi_nssp.patch", filename=params["common"]["log_filename"]) - + custom_run = params["common"].get("custom_run", False) + if custom_run and not good_patch_config(params): + logger.error("Custom flag is on, but config is bad. Exiting.") + sys.exit(1) start_issue = datetime.strptime(params["patch"]["start_issue"], "%Y-%m-%d") end_issue = datetime.strptime(params["patch"]["end_issue"], "%Y-%m-%d") diff --git a/nssp/delphi_nssp/run.py b/nssp/delphi_nssp/run.py index ad764599f..503f6357d 100644 --- a/nssp/delphi_nssp/run.py +++ b/nssp/delphi_nssp/run.py @@ -22,7 +22,6 @@ - "cache_dir": str, directory of locally cached data """ -import sys import time from datetime import datetime From a967416bc318b6b3c120919b1a5efc9b806f341d Mon Sep 17 00:00:00 2001 From: minhkhul Date: Tue, 6 Aug 2024 17:57:50 -0400 Subject: [PATCH 11/53] make patch config check readable --- nssp/delphi_nssp/patch.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 48858fda0..d1caaf712 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -33,7 +33,14 @@ def good_patch_config(params): - if not all(key in params.get("patch", {}) for key in ["start_issue", "end_issue", "patch_dir", "source_dir"]): + """ + Check if the params.json file is correctly configured for patching. + params: Dict[str, Any] + Nested dictionary of parameters, typically loaded from params.json file. + """ + required_keys = ["start_issue", "end_issue", "patch_dir", "source_dir"] + patch_config = params.get("patch", {}) + if not all(key in patch_config for key in required_keys): return False return True From c020da6caa3baadb8502b31e2eecfa5c1a470558 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Tue, 6 Aug 2024 18:49:31 -0400 Subject: [PATCH 12/53] make good_patch_config check comprehensive --- nssp/delphi_nssp/patch.py | 39 ++++++++++++++++++++++++++++++++------- 1 file changed, 32 insertions(+), 7 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index d1caaf712..0381dee9c 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -1,10 +1,12 @@ """ This module is used for patching data in the delphi_nssp package. -To use this module, you need to specify the range of issue dates in params.json, like so: +To use this module, you need to turn on the custom_run flag +and specify the range of issue dates in params.json, like so: { "common": { + "custom_run": true, ... }, "validation": { @@ -32,16 +34,41 @@ from .run import run_module -def good_patch_config(params): +def good_patch_config(params, logger): """ Check if the params.json file is correctly configured for patching. params: Dict[str, Any] Nested dictionary of parameters, typically loaded from params.json file. + logger: Logger object + Logger object to log messages. """ + custom_run = params["common"].get("custom_run", False) + if not custom_run: + logger.error("Calling patch.py without custom_run flag set true. Exiting.") + sys.exit(1) + required_keys = ["start_issue", "end_issue", "patch_dir", "source_dir"] patch_config = params.get("patch", {}) if not all(key in patch_config for key in required_keys): - return False + logger.error("Custom flag is on, but patch section is missing required key(s). Exiting.") + sys.exit(1) + + if not path.isdir(patch_config["source_dir"]): + logger.error(f"Source directory {patch_config['source_dir']} does not exist. Exiting.") + sys.exit(1) + + try: + start_issue = datetime.strptime(patch_config["start_issue"], "%Y-%m-%d") + end_issue = datetime.strptime(patch_config["end_issue"], "%Y-%m-%d") + except ValueError: + logger.error("Issue dates must be in YYYY-MM-DD format. Exiting.") + sys.exit(1) + + if start_issue > end_issue: + logger.error("Start issue date is after end issue date. Exiting.") + sys.exit(1) + + logger.info("Good patch configuration.") return True @@ -58,10 +85,8 @@ def patch(): """ params = read_params() logger = get_structured_logger("delphi_nssp.patch", filename=params["common"]["log_filename"]) - custom_run = params["common"].get("custom_run", False) - if custom_run and not good_patch_config(params): - logger.error("Custom flag is on, but config is bad. Exiting.") - sys.exit(1) + good_patch_config(params, logger) + start_issue = datetime.strptime(params["patch"]["start_issue"], "%Y-%m-%d") end_issue = datetime.strptime(params["patch"]["end_issue"], "%Y-%m-%d") From 9a6130b701d34e9d057cb8163df09a2e5a3cfc91 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Wed, 7 Aug 2024 02:27:04 -0400 Subject: [PATCH 13/53] rewrite good_patch_config for clarity --- nssp/delphi_nssp/patch.py | 33 ++++++++++++++++++++------------- 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 0381dee9c..74374b046 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -37,39 +37,45 @@ def good_patch_config(params, logger): """ Check if the params.json file is correctly configured for patching. + params: Dict[str, Any] Nested dictionary of parameters, typically loaded from params.json file. logger: Logger object Logger object to log messages. """ + good_patch_config = True custom_run = params["common"].get("custom_run", False) if not custom_run: - logger.error("Calling patch.py without custom_run flag set true. Exiting.") - sys.exit(1) + logger.error("Calling patch.py without custom_run flag set true.") + good_patch_config = False required_keys = ["start_issue", "end_issue", "patch_dir", "source_dir"] patch_config = params.get("patch", {}) if not all(key in patch_config for key in required_keys): - logger.error("Custom flag is on, but patch section is missing required key(s). Exiting.") - sys.exit(1) + logger.error("Custom flag is on, but patch section is missing required key(s).") + good_patch_config = False if not path.isdir(patch_config["source_dir"]): - logger.error(f"Source directory {patch_config['source_dir']} does not exist. Exiting.") - sys.exit(1) + logger.error(f"Source directory {patch_config['source_dir']} does not exist.") + good_patch_config = False try: start_issue = datetime.strptime(patch_config["start_issue"], "%Y-%m-%d") end_issue = datetime.strptime(patch_config["end_issue"], "%Y-%m-%d") except ValueError: - logger.error("Issue dates must be in YYYY-MM-DD format. Exiting.") - sys.exit(1) + logger.error("Issue dates must be in YYYY-MM-DD format.") + good_patch_config = False if start_issue > end_issue: - logger.error("Start issue date is after end issue date. Exiting.") - sys.exit(1) + logger.error("Start issue date is after end issue date.") + good_patch_config = False - logger.info("Good patch configuration.") - return True + if good_patch_config: + logger.info("Good patch configuration.") + return True + else: + logger.error("Bad patch configuration.") + return False def patch(): @@ -85,7 +91,8 @@ def patch(): """ params = read_params() logger = get_structured_logger("delphi_nssp.patch", filename=params["common"]["log_filename"]) - good_patch_config(params, logger) + if not good_patch_config(params, logger): + sys.exit(1) start_issue = datetime.strptime(params["patch"]["start_issue"], "%Y-%m-%d") end_issue = datetime.strptime(params["patch"]["end_issue"], "%Y-%m-%d") From b8a217796aa755c15a970d4306158b3101fbfbd6 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Wed, 7 Aug 2024 18:06:00 -0400 Subject: [PATCH 14/53] add unit tests for good_patch_config check --- nssp/delphi_nssp/patch.py | 42 ++++++++++--------- nssp/tests/test_patch.py | 87 ++++++++++++++++++++++++++++++++++++++- 2 files changed, 108 insertions(+), 21 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 74374b046..7c47121e1 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -49,32 +49,36 @@ def good_patch_config(params, logger): logger.error("Calling patch.py without custom_run flag set true.") good_patch_config = False - required_keys = ["start_issue", "end_issue", "patch_dir", "source_dir"] patch_config = params.get("patch", {}) - if not all(key in patch_config for key in required_keys): - logger.error("Custom flag is on, but patch section is missing required key(s).") - good_patch_config = False - - if not path.isdir(patch_config["source_dir"]): - logger.error(f"Source directory {patch_config['source_dir']} does not exist.") - good_patch_config = False - - try: - start_issue = datetime.strptime(patch_config["start_issue"], "%Y-%m-%d") - end_issue = datetime.strptime(patch_config["end_issue"], "%Y-%m-%d") - except ValueError: - logger.error("Issue dates must be in YYYY-MM-DD format.") - good_patch_config = False - - if start_issue > end_issue: - logger.error("Start issue date is after end issue date.") + if patch_config == {}: + logger.error("Custom flag is on, but patch section is missing.") good_patch_config = False + else: + required_patch_keys = ["start_issue", "end_issue", "patch_dir", "source_dir"] + missing_keys = [key for key in required_patch_keys if key not in patch_config] + if missing_keys: + logger.error(f"Patch section is missing required key(s): {', '.join(missing_keys)}") + good_patch_config = False + else: + try: #issue dates validity check + start_issue = datetime.strptime(patch_config["start_issue"], "%Y-%m-%d") + end_issue = datetime.strptime(patch_config["end_issue"], "%Y-%m-%d") + if start_issue > end_issue: + logger.error("Start issue date is after end issue date.") + good_patch_config = False + except ValueError: + logger.error("Issue dates must be in YYYY-MM-DD format.") + good_patch_config = False + + if not path.isdir(patch_config["source_dir"]): + logger.error(f"Source directory {patch_config['source_dir']} does not exist.") + good_patch_config = False if good_patch_config: logger.info("Good patch configuration.") return True else: - logger.error("Bad patch configuration.") + logger.info("Bad patch configuration.") return False diff --git a/nssp/tests/test_patch.py b/nssp/tests/test_patch.py index 5c614cbf9..82d5929f9 100644 --- a/nssp/tests/test_patch.py +++ b/nssp/tests/test_patch.py @@ -1,11 +1,93 @@ import unittest from unittest.mock import patch as mock_patch, call -from delphi_nssp.patch import patch +from delphi_nssp.patch import patch, good_patch_config import os import shutil from datetime import datetime, timedelta class TestPatchModule(unittest.TestCase): + def test_good_patch_config(self): + # Case 1: missing custom_run flag and patch section + with mock_patch('logging.Logger') as mock_logger: + patch_config = { + "common": {} + } + self.assertFalse(good_patch_config(patch_config, mock_logger)) + mock_logger.error.assert_has_calls([ + call("Calling patch.py without custom_run flag set true."), + call("Custom flag is on, but patch section is missing."), + ]) + + # Case 2: missing end_issue in patch section + with mock_patch('logging.Logger') as mock_logger: + patch_config = { + "common": { + "custom_run": True, + }, + "patch": { + "patch_dir": "dir", + "start_issue": "2024-04-21", + "source_dir": "source_dir" + } + } + self.assertFalse(good_patch_config(patch_config, mock_logger)) + mock_logger.error.assert_has_calls([ + call("Patch section is missing required key(s): end_issue"), + ]) + + # Case 3: start_issue not in yyyy-mm-dd format and source_dir doesn't exist. + with mock_patch('logging.Logger') as mock_logger: + patch_config = { + "common": { + "custom_run": True, + }, + "patch": { + "patch_dir": "dir", + "start_issue": "01-01-2024", + "end_issue": "2024-04-22", + "source_dir": "bad_source_dir" + } + } + self.assertFalse(good_patch_config(patch_config, mock_logger)) + mock_logger.error.assert_has_calls([ + call("Issue dates must be in YYYY-MM-DD format."), + call("Source directory bad_source_dir does not exist.") + ]) + + # Case 4: start_issue after end_issue + with mock_patch('logging.Logger') as mock_logger: + patch_config = { + "common": { + "custom_run": True, + }, + "patch": { + "patch_dir": "dir", + "start_issue": "2024-04-22", + "end_issue": "2024-04-21", + "source_dir": "source_dir" + } + } + self.assertFalse(good_patch_config(patch_config, mock_logger)) + mock_logger.error.assert_called_once_with("Start issue date is after end issue date.") + + # Case 5: All good configuration + with mock_patch('logging.Logger') as mock_logger: + patch_config = { + "common": { + "custom_run": True, + }, + "patch": { + "patch_dir": "dir", + "start_issue": "2024-04-21", + "end_issue": "2024-04-22", + "source_dir": "source_dir" + } + } + self.assertTrue(good_patch_config(patch_config, mock_logger)) + mock_logger.info.assert_called_once_with("Good patch configuration.") + + + def test_patch(self): with mock_patch('delphi_nssp.patch.run_module') as mock_run_module, \ mock_patch('delphi_nssp.patch.get_structured_logger') as mock_get_structured_logger, \ @@ -13,7 +95,8 @@ def test_patch(self): mock_read_params.return_value = { "common": { - "log_filename": "test.log" + "log_filename": "test.log", + "custom_run": True }, "patch": { "start_issue": "2021-01-01", From a7d94439fc0bbbd1ed45adebe81ffb7ba92a1962 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Wed, 7 Aug 2024 18:23:57 -0400 Subject: [PATCH 15/53] add test_pull unit test for patching case + cleanup format --- nssp/delphi_nssp/patch.py | 23 +++++++++++------------ nssp/tests/test_pull.py | 10 ++++++++++ 2 files changed, 21 insertions(+), 12 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 7c47121e1..dce12b39e 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -43,43 +43,42 @@ def good_patch_config(params, logger): logger: Logger object Logger object to log messages. """ - good_patch_config = True + valid_config = True custom_run = params["common"].get("custom_run", False) if not custom_run: logger.error("Calling patch.py without custom_run flag set true.") - good_patch_config = False + valid_config = False patch_config = params.get("patch", {}) if patch_config == {}: logger.error("Custom flag is on, but patch section is missing.") - good_patch_config = False + valid_config = False else: required_patch_keys = ["start_issue", "end_issue", "patch_dir", "source_dir"] missing_keys = [key for key in required_patch_keys if key not in patch_config] if missing_keys: logger.error(f"Patch section is missing required key(s): {', '.join(missing_keys)}") - good_patch_config = False + valid_config = False else: - try: #issue dates validity check + try: # issue dates validity check start_issue = datetime.strptime(patch_config["start_issue"], "%Y-%m-%d") end_issue = datetime.strptime(patch_config["end_issue"], "%Y-%m-%d") if start_issue > end_issue: logger.error("Start issue date is after end issue date.") - good_patch_config = False + valid_config = False except ValueError: logger.error("Issue dates must be in YYYY-MM-DD format.") - good_patch_config = False + valid_config = False if not path.isdir(patch_config["source_dir"]): logger.error(f"Source directory {patch_config['source_dir']} does not exist.") - good_patch_config = False + valid_config = False - if good_patch_config: + if valid_config: logger.info("Good patch configuration.") return True - else: - logger.info("Bad patch configuration.") - return False + logger.info("Bad patch configuration.") + return False def patch(): diff --git a/nssp/tests/test_pull.py b/nssp/tests/test_pull.py index b356341f6..1bcac3e86 100644 --- a/nssp/tests/test_pull.py +++ b/nssp/tests/test_pull.py @@ -22,6 +22,16 @@ class TestPullNSSPData(unittest.TestCase): + @patch("delphi_nssp.pull.Socrata") + def test_pull_nssp_data_for_patch(self, mock_socrata): + source_dir = "source_dir" + issue_date = "2021-01-02" + test_source_data = pd.read_csv(f"{source_dir}/{issue_date}.csv") + result = pull_nssp_data("test_token", issue_date, source_dir) + + assert test_source_data.shape[0] == result.shape[0] # Check if the number of rows are the same + mock_socrata.assert_not_called() + @patch("delphi_nssp.pull.Socrata") def test_pull_nssp_data(self, mock_socrata): # Load test data From e29e07e715f3a3854f00fca89fa0568e4b7490ea Mon Sep 17 00:00:00 2001 From: minhkhul Date: Thu, 8 Aug 2024 14:54:52 -0400 Subject: [PATCH 16/53] split test cases + move to pytest --- nssp/tests/test_patch.py | 212 +++++++++++++++++++-------------------- 1 file changed, 105 insertions(+), 107 deletions(-) diff --git a/nssp/tests/test_patch.py b/nssp/tests/test_patch.py index 82d5929f9..a5a4a6bf8 100644 --- a/nssp/tests/test_patch.py +++ b/nssp/tests/test_patch.py @@ -1,130 +1,128 @@ -import unittest +import pytest from unittest.mock import patch as mock_patch, call from delphi_nssp.patch import patch, good_patch_config import os import shutil from datetime import datetime, timedelta -class TestPatchModule(unittest.TestCase): - def test_good_patch_config(self): +class TestPatchModule: + @mock_patch('logging.Logger') + def test_good_patch_config_case1(self, mock_logger): # Case 1: missing custom_run flag and patch section - with mock_patch('logging.Logger') as mock_logger: - patch_config = { - "common": {} - } - self.assertFalse(good_patch_config(patch_config, mock_logger)) - mock_logger.error.assert_has_calls([ - call("Calling patch.py without custom_run flag set true."), - call("Custom flag is on, but patch section is missing."), - ]) - + patch_config = { + "common": {} + } + assert not good_patch_config(patch_config, mock_logger) + mock_logger.error.assert_has_calls([ + call("Calling patch.py without custom_run flag set true."), + call("Custom flag is on, but patch section is missing."), + ]) + + @mock_patch('logging.Logger') + def test_good_patch_config_case2(self, mock_logger): # Case 2: missing end_issue in patch section - with mock_patch('logging.Logger') as mock_logger: - patch_config = { - "common": { - "custom_run": True, - }, - "patch": { - "patch_dir": "dir", - "start_issue": "2024-04-21", - "source_dir": "source_dir" - } + patch_config = { + "common": { + "custom_run": True, + }, + "patch": { + "patch_dir": "dir", + "start_issue": "2024-04-21", + "source_dir": "source_dir" } - self.assertFalse(good_patch_config(patch_config, mock_logger)) - mock_logger.error.assert_has_calls([ - call("Patch section is missing required key(s): end_issue"), - ]) - + } + assert not good_patch_config(patch_config, mock_logger) + mock_logger.error.assert_has_calls([ + call("Patch section is missing required key(s): end_issue"), + ]) + + @mock_patch('logging.Logger') + def test_good_patch_config_case3(self, mock_logger): # Case 3: start_issue not in yyyy-mm-dd format and source_dir doesn't exist. - with mock_patch('logging.Logger') as mock_logger: - patch_config = { - "common": { - "custom_run": True, - }, - "patch": { - "patch_dir": "dir", - "start_issue": "01-01-2024", - "end_issue": "2024-04-22", - "source_dir": "bad_source_dir" - } + patch_config = { + "common": { + "custom_run": True, + }, + "patch": { + "patch_dir": "dir", + "start_issue": "01-01-2024", + "end_issue": "2024-04-22", + "source_dir": "bad_source_dir" } - self.assertFalse(good_patch_config(patch_config, mock_logger)) - mock_logger.error.assert_has_calls([ - call("Issue dates must be in YYYY-MM-DD format."), - call("Source directory bad_source_dir does not exist.") - ]) - + } + assert not good_patch_config(patch_config, mock_logger) + mock_logger.error.assert_has_calls([ + call("Issue dates must be in YYYY-MM-DD format."), + call("Source directory bad_source_dir does not exist.") + ]) + + @mock_patch('logging.Logger') + def test_good_patch_config_case4(self, mock_logger): # Case 4: start_issue after end_issue - with mock_patch('logging.Logger') as mock_logger: - patch_config = { - "common": { - "custom_run": True, - }, - "patch": { - "patch_dir": "dir", - "start_issue": "2024-04-22", - "end_issue": "2024-04-21", - "source_dir": "source_dir" - } + patch_config = { + "common": { + "custom_run": True, + }, + "patch": { + "patch_dir": "dir", + "start_issue": "2024-04-22", + "end_issue": "2024-04-21", + "source_dir": "source_dir" } - self.assertFalse(good_patch_config(patch_config, mock_logger)) - mock_logger.error.assert_called_once_with("Start issue date is after end issue date.") + } + assert not good_patch_config(patch_config, mock_logger) + mock_logger.error.assert_called_once_with("Start issue date is after end issue date.") + @mock_patch('logging.Logger') + def test_good_patch_config_case5(self, mock_logger): # Case 5: All good configuration - with mock_patch('logging.Logger') as mock_logger: - patch_config = { - "common": { - "custom_run": True, - }, - "patch": { - "patch_dir": "dir", - "start_issue": "2024-04-21", - "end_issue": "2024-04-22", - "source_dir": "source_dir" - } + patch_config = { + "common": { + "custom_run": True, + }, + "patch": { + "patch_dir": "dir", + "start_issue": "2024-04-21", + "end_issue": "2024-04-22", + "source_dir": "source_dir" } - self.assertTrue(good_patch_config(patch_config, mock_logger)) - mock_logger.info.assert_called_once_with("Good patch configuration.") - - - - def test_patch(self): - with mock_patch('delphi_nssp.patch.run_module') as mock_run_module, \ - mock_patch('delphi_nssp.patch.get_structured_logger') as mock_get_structured_logger, \ - mock_patch('delphi_nssp.patch.read_params') as mock_read_params: - - mock_read_params.return_value = { - "common": { - "log_filename": "test.log", - "custom_run": True - }, - "patch": { - "start_issue": "2021-01-01", - "end_issue": "2021-01-02", - "patch_dir": "./patch_dir", - "source_dir": "./source_dir" - } + } + assert good_patch_config(patch_config, mock_logger) + mock_logger.info.assert_called_once_with("Good patch configuration.") + + @mock_patch('delphi_nssp.patch.run_module') + @mock_patch('delphi_nssp.patch.get_structured_logger') + @mock_patch('delphi_nssp.patch.read_params') + def test_patch(self, mock_read_params, mock_get_structured_logger, mock_run_module): + mock_read_params.return_value = { + "common": { + "log_filename": "test.log", + "custom_run": True + }, + "patch": { + "start_issue": "2021-01-01", + "end_issue": "2021-01-02", + "patch_dir": "./patch_dir", + "source_dir": "./source_dir" } + } - patch() - - self.assertIn('current_issue', mock_read_params.return_value['patch']) - self.assertEqual(mock_read_params.return_value['patch']['current_issue'], '2021-01-02') + patch() - self.assertTrue(os.path.isdir('./patch_dir')) - self.assertTrue(os.path.isdir('./patch_dir/issue_20201227/nssp')) + assert 'current_issue' in mock_read_params.return_value['patch'] + assert mock_read_params.return_value['patch']['current_issue'] == '2021-01-02' - start_date = datetime(2020, 12, 28) - end_date = datetime(2021, 1, 3) - date = start_date + assert os.path.isdir('./patch_dir') + assert os.path.isdir('./patch_dir/issue_20201227/nssp') - while date <= end_date: - date_str = date.strftime("%Y%m%d") - self.assertFalse(os.path.isdir(f'./patch_dir/issue_{date_str}/nssp')) - date += timedelta(days=1) + start_date = datetime(2020, 12, 28) + end_date = datetime(2021, 1, 3) + date = start_date - # Clean up the created directories after the test - shutil.rmtree(mock_read_params.return_value["patch"]["patch_dir"]) + while date <= end_date: + date_str = date.strftime("%Y%m%d") + assert not os.path.isdir(f'./patch_dir/issue_{date_str}/nssp') + date += timedelta(days=1) -if __name__ == '__main__': - unittest.main() \ No newline at end of file + # Clean up the created directories after the test + shutil.rmtree(mock_read_params.return_value["patch"]["patch_dir"]) \ No newline at end of file From 0a4bfb66c09da75cc68135a85bf7cafe293f3d13 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Thu, 8 Aug 2024 23:45:36 -0400 Subject: [PATCH 17/53] add test for multi-week patching --- nssp/tests/source_dir/2021-01-02.csv | 4 ++- nssp/tests/source_dir/2021-01-08.csv | 4 +++ nssp/tests/source_dir/2021-01-09.csv | 4 +++ nssp/tests/source_dir/2021-01-12.csv | 4 +++ nssp/tests/test_patch.py | 51 ++++++++++++++++++++++++++++ 5 files changed, 66 insertions(+), 1 deletion(-) create mode 100644 nssp/tests/source_dir/2021-01-08.csv create mode 100644 nssp/tests/source_dir/2021-01-09.csv create mode 100644 nssp/tests/source_dir/2021-01-12.csv diff --git a/nssp/tests/source_dir/2021-01-02.csv b/nssp/tests/source_dir/2021-01-02.csv index b783f0162..7ae1b3340 100644 --- a/nssp/tests/source_dir/2021-01-02.csv +++ b/nssp/tests/source_dir/2021-01-02.csv @@ -1,2 +1,4 @@ week_end,geography,county,percent_visits_combined,percent_visits_covid,percent_visits_influenza,percent_visits_rsv,percent_visits_smoothed,percent_visits_smoothed_covid,percent_visits_smoothed_1,percent_visits_smoothed_rsv,ed_trends_covid,ed_trends_influenza,ed_trends_rsv,hsa,hsa_counties,hsa_nci_id,fips,trend_source -2022-10-01T00:00:00.000,United States,All,2.84,1.84,0.48,0.55,2.83,2.07,0.34,0.44,Decreasing,Increasing,Increasing,All,All,All,0,United States \ No newline at end of file +2020-10-01T00:00:00.000,United States,All,2.84,1.84,0.48,0.55,2.83,2.07,0.34,0.44,Decreasing,Increasing,Increasing,All,All,All,0,United States +2020-06-29T00:00:00.000,Alabama,All,1.01,0.85,0.17,0.0,0.89,0.66,0.22,0.03,Increasing,Decreasing,No Change,All,All,All,1000,State +2020-02-25T00:00:00.000,Alabama,Blount,,,,,,,,,Data Unavailable,Data Unavailable,Data Unavailable,"Jefferson (Birmingham), AL - Shelby, AL","Bibb, Blount, Chilton, Cullman, Jefferson, Shelby, St. Clair, Walker",150,1009,HSA diff --git a/nssp/tests/source_dir/2021-01-08.csv b/nssp/tests/source_dir/2021-01-08.csv new file mode 100644 index 000000000..7ae1b3340 --- /dev/null +++ b/nssp/tests/source_dir/2021-01-08.csv @@ -0,0 +1,4 @@ +week_end,geography,county,percent_visits_combined,percent_visits_covid,percent_visits_influenza,percent_visits_rsv,percent_visits_smoothed,percent_visits_smoothed_covid,percent_visits_smoothed_1,percent_visits_smoothed_rsv,ed_trends_covid,ed_trends_influenza,ed_trends_rsv,hsa,hsa_counties,hsa_nci_id,fips,trend_source +2020-10-01T00:00:00.000,United States,All,2.84,1.84,0.48,0.55,2.83,2.07,0.34,0.44,Decreasing,Increasing,Increasing,All,All,All,0,United States +2020-06-29T00:00:00.000,Alabama,All,1.01,0.85,0.17,0.0,0.89,0.66,0.22,0.03,Increasing,Decreasing,No Change,All,All,All,1000,State +2020-02-25T00:00:00.000,Alabama,Blount,,,,,,,,,Data Unavailable,Data Unavailable,Data Unavailable,"Jefferson (Birmingham), AL - Shelby, AL","Bibb, Blount, Chilton, Cullman, Jefferson, Shelby, St. Clair, Walker",150,1009,HSA diff --git a/nssp/tests/source_dir/2021-01-09.csv b/nssp/tests/source_dir/2021-01-09.csv new file mode 100644 index 000000000..5c8012ac0 --- /dev/null +++ b/nssp/tests/source_dir/2021-01-09.csv @@ -0,0 +1,4 @@ +week_end,geography,county,percent_visits_combined,percent_visits_covid,percent_visits_influenza,percent_visits_rsv,percent_visits_smoothed,percent_visits_smoothed_covid,percent_visits_smoothed_1,percent_visits_smoothed_rsv,ed_trends_covid,ed_trends_influenza,ed_trends_rsv,hsa,hsa_counties,hsa_nci_id,fips,trend_source +2020-10-01T00:00:00.000,United States,All,1,1,1,1,1,1,1,1,Decreasing,Decreasing,Decreasing,All,All,All,0,United States +2020-06-29T00:00:00.000,Oklahoma,All,1.01,0.85,0.17,0.0,0.89,0.66,0.22,0.03,Increasing,Decreasing,No Change,All,All,All,1000,State +2020-02-25T00:00:00.000,Alabama,Blount,,,,,,,,,Data Unavailable,Data Unavailable,Data Unavailable,"Jefferson (Birmingham), AL - Shelby, AL","Bibb, Blount, Chilton, Cullman, Jefferson, Shelby, St. Clair, Walker",150,1009,HSA diff --git a/nssp/tests/source_dir/2021-01-12.csv b/nssp/tests/source_dir/2021-01-12.csv new file mode 100644 index 000000000..5c8012ac0 --- /dev/null +++ b/nssp/tests/source_dir/2021-01-12.csv @@ -0,0 +1,4 @@ +week_end,geography,county,percent_visits_combined,percent_visits_covid,percent_visits_influenza,percent_visits_rsv,percent_visits_smoothed,percent_visits_smoothed_covid,percent_visits_smoothed_1,percent_visits_smoothed_rsv,ed_trends_covid,ed_trends_influenza,ed_trends_rsv,hsa,hsa_counties,hsa_nci_id,fips,trend_source +2020-10-01T00:00:00.000,United States,All,1,1,1,1,1,1,1,1,Decreasing,Decreasing,Decreasing,All,All,All,0,United States +2020-06-29T00:00:00.000,Oklahoma,All,1.01,0.85,0.17,0.0,0.89,0.66,0.22,0.03,Increasing,Decreasing,No Change,All,All,All,1000,State +2020-02-25T00:00:00.000,Alabama,Blount,,,,,,,,,Data Unavailable,Data Unavailable,Data Unavailable,"Jefferson (Birmingham), AL - Shelby, AL","Bibb, Blount, Chilton, Cullman, Jefferson, Shelby, St. Clair, Walker",150,1009,HSA diff --git a/nssp/tests/test_patch.py b/nssp/tests/test_patch.py index a5a4a6bf8..9397255e6 100644 --- a/nssp/tests/test_patch.py +++ b/nssp/tests/test_patch.py @@ -4,6 +4,7 @@ import os import shutil from datetime import datetime, timedelta +import pandas as pd class TestPatchModule: @mock_patch('logging.Logger') @@ -124,5 +125,55 @@ def test_patch(self, mock_read_params, mock_get_structured_logger, mock_run_modu assert not os.path.isdir(f'./patch_dir/issue_{date_str}/nssp') date += timedelta(days=1) + # Clean up the created directories after the test + shutil.rmtree(mock_read_params.return_value["patch"]["patch_dir"]) + + # @mock_patch('delphi_nssp.patch.run_module') + @mock_patch('delphi_nssp.patch.get_structured_logger') + @mock_patch('delphi_nssp.patch.read_params') + def test_patch(self, mock_read_params, mock_get_structured_logger): + # def test_patch(self, mock_read_params, mock_get_structured_logger, mock_run_module): + mock_read_params.return_value = { + "common": { + "log_filename": "test.log", + "custom_run": True + }, + "indicator": { + "socrata_token": "test_token" + }, + "patch": { + "start_issue": "2021-01-01", + "end_issue": "2021-01-16", + "patch_dir": "./patch_dir", + "source_dir": "./source_dir" + } + } + + patch() + + start_date = datetime(2021, 1, 1) + end_date = datetime(2021, 1, 16) + date = start_date + + # Only Sundays should be issue dirs. + while date <= end_date: + date_str = date.strftime("%Y%m%d") + if date.weekday() == 6: + assert os.path.isdir(f'./patch_dir/issue_{date_str}/nssp') + else: + assert not os.path.isdir(f'./patch_dir/issue_{date_str}/nssp') + date += timedelta(days=1) + + # Make sure issue_20210103 has latest weekly data (data from 20210109 instead of 20210108) + df_20210108 = pd.read_csv('source_dir/2021-01-08.csv') + df_20210108_nation_combined = df_20210108['percent_visits_combined'].iloc[0] + df_20210109 = pd.read_csv('source_dir/2021-01-09.csv') + df_20210109_nation_combined = df_20210109['percent_visits_combined'].iloc[0] + assert df_20210108_nation_combined != df_20210109_nation_combined + + df_issue_20210103 = pd.read_csv('patch_dir/issue_20210103/nssp/weekly_202040_nation_pct_ed_visits_combined.csv') + df_issue_20210103_nation_combined = df_issue_20210103['val'].iloc[0] + assert df_20210109_nation_combined == df_issue_20210103_nation_combined + # Clean up the created directories after the test shutil.rmtree(mock_read_params.return_value["patch"]["patch_dir"]) \ No newline at end of file From 6c0abad7af8b01d79aded2fec06864ba67a9f7e0 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Thu, 15 Aug 2024 16:30:40 -0400 Subject: [PATCH 18/53] rename tests for clarity + restructure test_patch tests to clarify purpose --- nssp/tests/test_patch.py | 47 +++++++++++++--------------------------- 1 file changed, 15 insertions(+), 32 deletions(-) diff --git a/nssp/tests/test_patch.py b/nssp/tests/test_patch.py index 9397255e6..08f0b12ad 100644 --- a/nssp/tests/test_patch.py +++ b/nssp/tests/test_patch.py @@ -8,7 +8,7 @@ class TestPatchModule: @mock_patch('logging.Logger') - def test_good_patch_config_case1(self, mock_logger): + def test_config_missing_custom_run_and_patch_section(self, mock_logger): # Case 1: missing custom_run flag and patch section patch_config = { "common": {} @@ -20,7 +20,7 @@ def test_good_patch_config_case1(self, mock_logger): ]) @mock_patch('logging.Logger') - def test_good_patch_config_case2(self, mock_logger): + def test_config_missing_end_issue_in_patch_section(self, mock_logger): # Case 2: missing end_issue in patch section patch_config = { "common": { @@ -38,7 +38,7 @@ def test_good_patch_config_case2(self, mock_logger): ]) @mock_patch('logging.Logger') - def test_good_patch_config_case3(self, mock_logger): + def test_config_invalid_start_issue_and_missing_source_dir(self, mock_logger): # Case 3: start_issue not in yyyy-mm-dd format and source_dir doesn't exist. patch_config = { "common": { @@ -58,7 +58,7 @@ def test_good_patch_config_case3(self, mock_logger): ]) @mock_patch('logging.Logger') - def test_good_patch_config_case4(self, mock_logger): + def test_config_start_issue_after_end_issue(self, mock_logger): # Case 4: start_issue after end_issue patch_config = { "common": { @@ -75,7 +75,7 @@ def test_good_patch_config_case4(self, mock_logger): mock_logger.error.assert_called_once_with("Start issue date is after end issue date.") @mock_patch('logging.Logger') - def test_good_patch_config_case5(self, mock_logger): + def test_config_all_valid_configurations(self, mock_logger): # Case 5: All good configuration patch_config = { "common": { @@ -94,7 +94,7 @@ def test_good_patch_config_case5(self, mock_logger): @mock_patch('delphi_nssp.patch.run_module') @mock_patch('delphi_nssp.patch.get_structured_logger') @mock_patch('delphi_nssp.patch.read_params') - def test_patch(self, mock_read_params, mock_get_structured_logger, mock_run_module): + def test_patch_confirm_dir_structure_created(self, mock_read_params, mock_get_structured_logger, mock_run_module): mock_read_params.return_value = { "common": { "log_filename": "test.log", @@ -102,7 +102,7 @@ def test_patch(self, mock_read_params, mock_get_structured_logger, mock_run_modu }, "patch": { "start_issue": "2021-01-01", - "end_issue": "2021-01-02", + "end_issue": "2021-01-16", "patch_dir": "./patch_dir", "source_dir": "./source_dir" } @@ -110,29 +110,25 @@ def test_patch(self, mock_read_params, mock_get_structured_logger, mock_run_modu patch() - assert 'current_issue' in mock_read_params.return_value['patch'] - assert mock_read_params.return_value['patch']['current_issue'] == '2021-01-02' - - assert os.path.isdir('./patch_dir') - assert os.path.isdir('./patch_dir/issue_20201227/nssp') - - start_date = datetime(2020, 12, 28) - end_date = datetime(2021, 1, 3) + start_date = datetime(2021, 1, 1) + end_date = datetime(2021, 1, 16) date = start_date + # Only Sundays should be issue dirs. while date <= end_date: date_str = date.strftime("%Y%m%d") - assert not os.path.isdir(f'./patch_dir/issue_{date_str}/nssp') + if date.weekday() == 6: + assert os.path.isdir(f'./patch_dir/issue_{date_str}/nssp') + else: + assert not os.path.isdir(f'./patch_dir/issue_{date_str}/nssp') date += timedelta(days=1) # Clean up the created directories after the test shutil.rmtree(mock_read_params.return_value["patch"]["patch_dir"]) - # @mock_patch('delphi_nssp.patch.run_module') @mock_patch('delphi_nssp.patch.get_structured_logger') @mock_patch('delphi_nssp.patch.read_params') - def test_patch(self, mock_read_params, mock_get_structured_logger): - # def test_patch(self, mock_read_params, mock_get_structured_logger, mock_run_module): + def test_patch_confirm_values_generated(self, mock_read_params, mock_get_structured_logger): mock_read_params.return_value = { "common": { "log_filename": "test.log", @@ -151,19 +147,6 @@ def test_patch(self, mock_read_params, mock_get_structured_logger): patch() - start_date = datetime(2021, 1, 1) - end_date = datetime(2021, 1, 16) - date = start_date - - # Only Sundays should be issue dirs. - while date <= end_date: - date_str = date.strftime("%Y%m%d") - if date.weekday() == 6: - assert os.path.isdir(f'./patch_dir/issue_{date_str}/nssp') - else: - assert not os.path.isdir(f'./patch_dir/issue_{date_str}/nssp') - date += timedelta(days=1) - # Make sure issue_20210103 has latest weekly data (data from 20210109 instead of 20210108) df_20210108 = pd.read_csv('source_dir/2021-01-08.csv') df_20210108_nation_combined = df_20210108['percent_visits_combined'].iloc[0] From 7078dd04efddf254a87e1892482af4c4af49eea3 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Thu, 15 Aug 2024 18:04:35 -0400 Subject: [PATCH 19/53] make expected issue dates explicit in test_patch_confirm_dir_structure_created --- nssp/tests/test_patch.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/nssp/tests/test_patch.py b/nssp/tests/test_patch.py index 08f0b12ad..92303f6f7 100644 --- a/nssp/tests/test_patch.py +++ b/nssp/tests/test_patch.py @@ -110,18 +110,18 @@ def test_patch_confirm_dir_structure_created(self, mock_read_params, mock_get_st patch() - start_date = datetime(2021, 1, 1) - end_date = datetime(2021, 1, 16) - date = start_date - # Only Sundays should be issue dirs. - while date <= end_date: - date_str = date.strftime("%Y%m%d") - if date.weekday() == 6: - assert os.path.isdir(f'./patch_dir/issue_{date_str}/nssp') - else: - assert not os.path.isdir(f'./patch_dir/issue_{date_str}/nssp') - date += timedelta(days=1) + # Note that data from 2021-01-02.csv falls under issue_20211227. + issue_dates = ["20201227", "20210103", "20210110"] + for date_str in issue_dates: + assert os.path.isdir(f'./patch_dir/issue_{date_str}/nssp') + + not_issue_dates = ["20210101", "20210102", "20210104", "20210105", + "20210106", "20210107", "20210108", "20210109", + "20210111", "20210112", "20210113", "20210114", + "20210115", "20210116"] + for date_str in not_issue_dates: + assert not os.path.isdir(f'./patch_dir/issue_{date_str}/nssp') # Clean up the created directories after the test shutil.rmtree(mock_read_params.return_value["patch"]["patch_dir"]) From d435bf0f0d5880ddf8905ea60f242976e6702342 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Thu, 15 Aug 2024 18:58:11 -0400 Subject: [PATCH 20/53] add log to distinguish grabbing records from socrata vs locally stored csv in pull_nssp_data --- nssp/delphi_nssp/pull.py | 7 +++++-- nssp/delphi_nssp/run.py | 4 ++-- nssp/tests/test_pull.py | 13 +++++++++++-- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index caeeffefa..eaa6955d7 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -8,7 +8,6 @@ from .constants import NEWLINE, SIGNALS, SIGNALS_MAP, TYPE_DICT - def warn_string(df, type_dict): """Format the warning string.""" warn = textwrap.dedent( @@ -27,7 +26,7 @@ def warn_string(df, type_dict): return warn -def pull_nssp_data(socrata_token: str, issue_date: str = None, source_dir: str = None) -> pd.DataFrame: +def pull_nssp_data(socrata_token: str, logger, issue_date: str = None, source_dir: str = None) -> pd.DataFrame: """Pull the latest NSSP ER visits data, and conforms it into a dataset. The output dataset has: @@ -46,6 +45,8 @@ def pull_nssp_data(socrata_token: str, issue_date: str = None, source_dir: str = The files in source_dir are expected to be named yyyy-mm-dd.csv test_file: Optional[str] When not null, name of file from which to read test data + logger: + Logger object Returns ------- @@ -65,8 +66,10 @@ def pull_nssp_data(socrata_token: str, issue_date: str = None, source_dir: str = results.extend(page) offset += limit df_ervisits = pd.DataFrame.from_records(results) + logger.info(f"Grabbed {len(df_ervisits)} records from Socrata API") else: df_ervisits = pd.read_csv(f"{source_dir}/{issue_date}.csv") + logger.info(f"Grabbed {len(df_ervisits)} records from {source_dir}/{issue_date}.csv") df_ervisits = df_ervisits.rename(columns={"week_end": "timestamp"}) df_ervisits = df_ervisits.rename(columns=SIGNALS_MAP) diff --git a/nssp/delphi_nssp/run.py b/nssp/delphi_nssp/run.py index 503f6357d..6af85e33b 100644 --- a/nssp/delphi_nssp/run.py +++ b/nssp/delphi_nssp/run.py @@ -89,9 +89,9 @@ def run_module(params, logger=None): if custom_run: issue_date = params.get("patch", {}).get("current_issue", None) source_dir = params.get("patch", {}).get("source_dir", None) - df_pull = pull_nssp_data(socrata_token, issue_date, source_dir) + df_pull = pull_nssp_data(socrata_token, logger, issue_date, source_dir) else: - df_pull = pull_nssp_data(socrata_token) + df_pull = pull_nssp_data(socrata_token, logger) ## aggregate geo_mapper = GeoMapper() for signal in SIGNALS: diff --git a/nssp/tests/test_pull.py b/nssp/tests/test_pull.py index 1bcac3e86..488aaced8 100644 --- a/nssp/tests/test_pull.py +++ b/nssp/tests/test_pull.py @@ -27,7 +27,11 @@ def test_pull_nssp_data_for_patch(self, mock_socrata): source_dir = "source_dir" issue_date = "2021-01-02" test_source_data = pd.read_csv(f"{source_dir}/{issue_date}.csv") - result = pull_nssp_data("test_token", issue_date, source_dir) + mock_logger = MagicMock() + result = pull_nssp_data("test_token", mock_logger, issue_date, source_dir) + + # Check that loggger was called with correct info + mock_logger.info.assert_called_with(f"Grabbed {len(result)} records from {source_dir}/{issue_date}.csv") assert test_source_data.shape[0] == result.shape[0] # Check if the number of rows are the same mock_socrata.assert_not_called() @@ -43,11 +47,16 @@ def test_pull_nssp_data(self, mock_socrata): mock_client.get.side_effect = [test_data, []] # Return test data on first call, empty list on second call mock_socrata.return_value = mock_client + mock_logger = MagicMock() + # Call function with test token test_token = "test_token" - result = pull_nssp_data(test_token) + result = pull_nssp_data(test_token, mock_logger) print(result) + # Check that loggger was called with correct info + mock_logger.info.assert_called_with(f"Grabbed {len(result)} records from Socrata API") + # Check that Socrata client was initialized with correct arguments mock_socrata.assert_called_once_with("data.cdc.gov", test_token) From 8734daa61e44078122e129bdb2e0e75018e25867 Mon Sep 17 00:00:00 2001 From: minhkhul <118945681+minhkhul@users.noreply.github.com> Date: Wed, 28 Aug 2024 16:43:15 -0400 Subject: [PATCH 21/53] Update nssp/README.md Co-authored-by: nmdefries <42820733+nmdefries@users.noreply.github.com> --- nssp/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nssp/README.md b/nssp/README.md index 4ff5a67fa..1ec8c4325 100644 --- a/nssp/README.md +++ b/nssp/README.md @@ -77,7 +77,7 @@ should not include critical sub-routines. ## Running Patches: A daily backup of from source in the form of csv files can be found on `bigchunk-dev-02` under `/common/source_backup/nssp`. Talk to your sysadmin for access. -You can also generate your own backup from source by setting up a cron job that runs the following .py every day when a pipeline outtage is going on on our side but aource api is still available: +You can also generate your own backup from source by setting up a cron job that runs the following .py every day when a pipeline outtage is going on on our side but source api is still available: ``` import numpy as np import pandas as pd From 5a6f8b62cb6f5d83a20c83dc8bad56d328f17eab Mon Sep 17 00:00:00 2001 From: minhkhul <118945681+minhkhul@users.noreply.github.com> Date: Wed, 28 Aug 2024 16:43:47 -0400 Subject: [PATCH 22/53] Update nssp/README.md Co-authored-by: nmdefries <42820733+nmdefries@users.noreply.github.com> --- nssp/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nssp/README.md b/nssp/README.md index 1ec8c4325..e1357bf7a 100644 --- a/nssp/README.md +++ b/nssp/README.md @@ -75,7 +75,7 @@ None of the linting or unit tests should fail, and the code lines that are not c should not include critical sub-routines. ## Running Patches: -A daily backup of from source in the form of csv files can be found on `bigchunk-dev-02` under `/common/source_backup/nssp`. Talk to your sysadmin for access. +A daily backup of source in the form of csv files can be found on `bigchunk-dev-02` under `/common/source_backup/nssp`. Talk to your sysadmin for access. You can also generate your own backup from source by setting up a cron job that runs the following .py every day when a pipeline outtage is going on on our side but source api is still available: ``` From 4356494246e2defc1c4a5118bcf2eddce8ca8028 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Wed, 28 Aug 2024 20:20:07 -0400 Subject: [PATCH 23/53] Add auto-download source backup data + update docs + test --- nssp/README.md | 27 ++-------------- nssp/delphi_nssp/patch.py | 66 ++++++++++++++++++++++++++++++++++++--- nssp/setup.py | 1 + nssp/tests/test_patch.py | 39 +++++++++++++++++++++-- 4 files changed, 101 insertions(+), 32 deletions(-) diff --git a/nssp/README.md b/nssp/README.md index e1357bf7a..bfd9b3b30 100644 --- a/nssp/README.md +++ b/nssp/README.md @@ -75,31 +75,8 @@ None of the linting or unit tests should fail, and the code lines that are not c should not include critical sub-routines. ## Running Patches: -A daily backup of source in the form of csv files can be found on `bigchunk-dev-02` under `/common/source_backup/nssp`. Talk to your sysadmin for access. - -You can also generate your own backup from source by setting up a cron job that runs the following .py every day when a pipeline outtage is going on on our side but source api is still available: -``` -import numpy as np -import pandas as pd -from sodapy import Socrata -from datetime import date - -today = date.today() -socrata_token = 'FILL_YOUR_OWN_TOKEN_HERE' -client = Socrata("data.cdc.gov", socrata_token) -results = [] -offset = 0 -limit = 50000 # maximum limit allowed by SODA 2.0 -while True: - page = client.get("rdmq-nq56", limit=limit, offset=offset) - if not page: - break # exit the loop if no more results - results.extend(page) - offset += limit -df_ervisits = pd.DataFrame.from_records(results) -df_ervisits.to_csv(f'~/{today}.csv', index=False) -``` -When you're ready to create patching data for a specific date range in batch issue format, adjust `params.json` in accordance with instructions in `patch.py`, move the backup csv files into your chosen `source_dir`, then run +A daily backup of source in the form of csv files can be found on `bigchunk-dev-02.delphi.cmu.edu` under `/common/source_backup/nssp`. This data is needed to create patches. Talk to your sysadmin for access. +When your credentials to the server are working, to create patching data for a specific date range in batch issue format, adjust `params.json` in accordance with instructions in `patch.py`, then run ``` env/bin/python -m delphi_nssp.patch ``` \ No newline at end of file diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index dce12b39e..bb7a1a10a 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -13,6 +13,11 @@ ... }, "patch": { + "source_backup_credentials": { + "host": "bigchunk-dev-02.delphi.cmu.edu", + "user": "user", + "path": "/common/source_backup/nssp" + }, "patch_dir": "/Users/minhkhuele/Desktop/delphi/covidcast-indicators/nssp/AprilPatch", "start_issue": "2024-04-20", "end_issue": "2024-04-21", @@ -28,12 +33,55 @@ from datetime import datetime, timedelta from os import makedirs, path +import pandas as pd +import paramiko from delphi_utils import get_structured_logger, read_params from epiweeks import Week from .run import run_module +def get_source_data(params, logger): + """ + Download source data from the backup server. + + This function uses 'source_backup_credentials' in params to connect to a server where backup source data is stored. + It then searches for CSV files that match the inclusive range of issue dates + and location specified by 'path', 'start_issue', and 'end_issue'. + These CSV files are then downloaded and stored in the 'source_dir' directory. + """ + ssh = paramiko.SSHClient() + ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) + host = params["patch"]["source_backup_credentials"]["host"] + user = params["patch"]["source_backup_credentials"]["user"] + ssh.connect(host, username=user) + + # Generate file names of source files to download + dates = pd.date_range(start=params["patch"]["start_issue"], end=params["patch"]["end_issue"]) + csv_file_names = [date.strftime("%Y-%m-%d") + ".csv" for date in dates] + + # Download source files + sftp = ssh.open_sftp() + sftp.chdir(params["patch"]["source_backup_credentials"]["path"]) + num_files_transferred = 0 + for remote_file_name in csv_file_names: + try: + local_file_path = path.join(params["patch"]["source_dir"], remote_file_name) + sftp.stat(remote_file_name) + sftp.get(remote_file_name, local_file_path) + num_files_transferred += 1 + except IOError: + logger.warning( + "Source backup for this date does not exist on the remote server.", missing_filename=remote_file_name + ) + sftp.close() + ssh.close() + + if num_files_transferred == 0: + logger.error("No source data was transferred. Check the source backup server for potential issues.") + sys.exit(1) + + def good_patch_config(params, logger): """ Check if the params.json file is correctly configured for patching. @@ -87,6 +135,12 @@ def patch(): The range of issue dates is specified in params.json using the following keys: - "patch": Only used for patching data + - "source_backup_credentials": (Optional) + Add this object to download source data from a backup server to source_dir. + Remove to assume source csv are already in source_dir. + - "host": str, hostname of the server where source data is backed up + - "user": str, username to log in to the server + - "path": str, path to the directory containing backup csv files - "start_date": str, YYYY-MM-DD format, first issue date - "end_date": str, YYYY-MM-DD format, last issue date - "patch_dir": str, directory to write all issues output @@ -97,14 +151,16 @@ def patch(): if not good_patch_config(params, logger): sys.exit(1) + if "source_backup_credentials" in params["patch"]: + get_source_data(params, logger) + start_issue = datetime.strptime(params["patch"]["start_issue"], "%Y-%m-%d") end_issue = datetime.strptime(params["patch"]["end_issue"], "%Y-%m-%d") - logger.info(f"""Start patching {params["patch"]["patch_dir"]}""") - logger.info(f"""Start issue: {start_issue.strftime("%Y-%m-%d")}""") - logger.info(f"""End issue: {end_issue.strftime("%Y-%m-%d")}""") - logger.info(f"""Source from: {params["patch"]["source_dir"]}""") - logger.info(f"""Output to: {params["patch"]["patch_dir"]}""") + logger.info(start_issue=start_issue.strftime("%Y-%m-%d")) + logger.info(end_issue=end_issue.strftime("%Y-%m-%d")) + logger.info(source_dir=params["patch"]["source_dir"]) + logger.info(patch_dir=params["patch"]["patch_dir"]) makedirs(params["patch"]["patch_dir"], exist_ok=True) diff --git a/nssp/setup.py b/nssp/setup.py index a6cbf640a..80abe1e77 100644 --- a/nssp/setup.py +++ b/nssp/setup.py @@ -13,6 +13,7 @@ "epiweeks", "freezegun", "us", + "paramiko", ] setup( diff --git a/nssp/tests/test_patch.py b/nssp/tests/test_patch.py index 92303f6f7..a701bf8ec 100644 --- a/nssp/tests/test_patch.py +++ b/nssp/tests/test_patch.py @@ -1,12 +1,47 @@ import pytest -from unittest.mock import patch as mock_patch, call -from delphi_nssp.patch import patch, good_patch_config +from unittest.mock import patch as mock_patch, call, MagicMock +from delphi_nssp.patch import patch, good_patch_config, get_source_data import os import shutil from datetime import datetime, timedelta import pandas as pd class TestPatchModule: + @mock_patch('paramiko.SSHClient') + def test_get_source_data(self,mock_ssh): + # Mock the SSH and SFTP clients + mock_sftp = MagicMock() + mock_ssh.return_value.open_sftp.return_value = mock_sftp + + # Define the parameters for the function + params = { + "patch": { + "source_backup_credentials": { + "host": "hostname", + "user": "user", + "path": "/path/to/remote/dir" + }, + "start_issue": "2021-01-01", + "end_issue": "2021-01-03", + "source_dir": "/path/to/local/dir" + } + } + + # Mock the logger + logger = MagicMock() + # Call the function + get_source_data(params, logger) + + # Check that the SSH client was used correctly + mock_ssh.return_value.connect.assert_called_once_with(params["patch"]["source_backup_credentials"]["host"], username=params["patch"]["source_backup_credentials"]["user"]) + mock_ssh.return_value.close.assert_called_once() + + # Check that the SFTP client was used correctly + mock_sftp.chdir.assert_called_once_with(params["patch"]["source_backup_credentials"]["path"]) + assert mock_sftp.get.call_count == 3 # one call for each date in the range + mock_sftp.close.assert_called_once() + + @mock_patch('logging.Logger') def test_config_missing_custom_run_and_patch_section(self, mock_logger): # Case 1: missing custom_run flag and patch section From ca427a4a9cbd7128a514a85923b69c9aaad873b4 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Fri, 30 Aug 2024 14:53:54 -0400 Subject: [PATCH 24/53] adjust custom_run flag to leave room for non-patch custom runs --- nssp/delphi_nssp/run.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nssp/delphi_nssp/run.py b/nssp/delphi_nssp/run.py index 6af85e33b..c9b6bdcd4 100644 --- a/nssp/delphi_nssp/run.py +++ b/nssp/delphi_nssp/run.py @@ -71,7 +71,7 @@ def run_module(params, logger=None): """ start_time = time.time() custom_run = params["common"].get("custom_run", False) - # logger doesn't exist yet means run_module is called from normal indicator run (instead of patching) + # logger doesn't exist yet means run_module is called from normal indicator run (instead of any custom run) if not logger: logger = get_structured_logger( __name__, @@ -86,11 +86,11 @@ def run_module(params, logger=None): run_stats = [] ## build the base version of the signal at the most detailed geo level you can get. ## compute stuff here or farm out to another function or file - if custom_run: + if custom_run and logger.name == "delphi_nssp.patch": issue_date = params.get("patch", {}).get("current_issue", None) source_dir = params.get("patch", {}).get("source_dir", None) df_pull = pull_nssp_data(socrata_token, logger, issue_date, source_dir) - else: + if not custom_run: df_pull = pull_nssp_data(socrata_token, logger) ## aggregate geo_mapper = GeoMapper() From f58b068e202c50a913c6a85b7edf93cc1dc0b3e0 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Fri, 30 Aug 2024 15:54:46 -0400 Subject: [PATCH 25/53] move pull logic from run.py into pull.py --- nssp/delphi_nssp/pull.py | 18 ++++++++---------- nssp/delphi_nssp/run.py | 7 +------ 2 files changed, 9 insertions(+), 16 deletions(-) diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index eaa6955d7..0a214e916 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -26,7 +26,7 @@ def warn_string(df, type_dict): return warn -def pull_nssp_data(socrata_token: str, logger, issue_date: str = None, source_dir: str = None) -> pd.DataFrame: +def pull_nssp_data(socrata_token: str, params: dict, logger) -> pd.DataFrame: """Pull the latest NSSP ER visits data, and conforms it into a dataset. The output dataset has: @@ -38,13 +38,8 @@ def pull_nssp_data(socrata_token: str, logger, issue_date: str = None, source_di ---------- socrata_token: str My App Token for pulling the NWSS data (could be the same as the nchs data) - issue_date: Optional[str] - (patching mode only) YYYY-MM-DD formatted date of the issue to pull data for - source_dir: Optional[str] - (patching mode only) Path to the directory containing the source data csv files - The files in source_dir are expected to be named yyyy-mm-dd.csv - test_file: Optional[str] - When not null, name of file from which to read test data + params: dict + Nested dictionary of parameters, should contain info on run type. logger: Logger object @@ -53,7 +48,8 @@ def pull_nssp_data(socrata_token: str, logger, issue_date: str = None, source_di pd.DataFrame Dataframe as described above. """ - if not issue_date: + custom_run = params["common"].get("custom_run", False) + if not custom_run: # Pull data from Socrata API client = Socrata("data.cdc.gov", socrata_token) results = [] @@ -67,7 +63,9 @@ def pull_nssp_data(socrata_token: str, logger, issue_date: str = None, source_di offset += limit df_ervisits = pd.DataFrame.from_records(results) logger.info(f"Grabbed {len(df_ervisits)} records from Socrata API") - else: + elif custom_run and logger.name == "delphi_nssp.patch": + issue_date = params.get("patch", {}).get("current_issue", None) + source_dir = params.get("patch", {}).get("source_dir", None) df_ervisits = pd.read_csv(f"{source_dir}/{issue_date}.csv") logger.info(f"Grabbed {len(df_ervisits)} records from {source_dir}/{issue_date}.csv") df_ervisits = df_ervisits.rename(columns={"week_end": "timestamp"}) diff --git a/nssp/delphi_nssp/run.py b/nssp/delphi_nssp/run.py index c9b6bdcd4..50facfff4 100644 --- a/nssp/delphi_nssp/run.py +++ b/nssp/delphi_nssp/run.py @@ -86,12 +86,7 @@ def run_module(params, logger=None): run_stats = [] ## build the base version of the signal at the most detailed geo level you can get. ## compute stuff here or farm out to another function or file - if custom_run and logger.name == "delphi_nssp.patch": - issue_date = params.get("patch", {}).get("current_issue", None) - source_dir = params.get("patch", {}).get("source_dir", None) - df_pull = pull_nssp_data(socrata_token, logger, issue_date, source_dir) - if not custom_run: - df_pull = pull_nssp_data(socrata_token, logger) + df_pull = pull_nssp_data(socrata_token, params, logger) ## aggregate geo_mapper = GeoMapper() for signal in SIGNALS: From 5e93175aa87b0c0ced798b07d5c573893758dae2 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Fri, 30 Aug 2024 16:08:02 -0400 Subject: [PATCH 26/53] logger to static --- nssp/delphi_nssp/patch.py | 8 ++++---- nssp/delphi_nssp/pull.py | 8 ++++++-- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index bb7a1a10a..921183456 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -105,7 +105,7 @@ def good_patch_config(params, logger): required_patch_keys = ["start_issue", "end_issue", "patch_dir", "source_dir"] missing_keys = [key for key in required_patch_keys if key not in patch_config] if missing_keys: - logger.error(f"Patch section is missing required key(s): {', '.join(missing_keys)}") + logger.error("Patch section is missing required key(s)", missing_keys=missing_keys) valid_config = False else: try: # issue dates validity check @@ -119,7 +119,7 @@ def good_patch_config(params, logger): valid_config = False if not path.isdir(patch_config["source_dir"]): - logger.error(f"Source directory {patch_config['source_dir']} does not exist.") + logger.error("Source directory does not exist.", source_dir=patch_config["source_dir"]) valid_config = False if valid_config: @@ -166,13 +166,13 @@ def patch(): current_issue = start_issue while current_issue <= end_issue: - logger.info(f"""Running issue {current_issue.strftime("%Y-%m-%d")}""") + logger.info("patching issue", issue_date=current_issue.strftime("%Y-%m-%d")) current_issue_source_csv = ( f"""{params.get("patch", {}).get("source_dir")}/{current_issue.strftime("%Y-%m-%d")}.csv""" ) if not path.isfile(current_issue_source_csv): - logger.info(f"No source data at {current_issue_source_csv}") + logger.info("No source data at this path", current_issue_source_csv=current_issue_source_csv) current_issue += timedelta(days=1) continue diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index 0a214e916..66852d05e 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -62,12 +62,16 @@ def pull_nssp_data(socrata_token: str, params: dict, logger) -> pd.DataFrame: results.extend(page) offset += limit df_ervisits = pd.DataFrame.from_records(results) - logger.info(f"Grabbed {len(df_ervisits)} records from Socrata API") + logger.info("Number of records grabbed from Socrata API", num_records=len(df_ervisits), source="Socrata API") elif custom_run and logger.name == "delphi_nssp.patch": issue_date = params.get("patch", {}).get("current_issue", None) source_dir = params.get("patch", {}).get("source_dir", None) df_ervisits = pd.read_csv(f"{source_dir}/{issue_date}.csv") - logger.info(f"Grabbed {len(df_ervisits)} records from {source_dir}/{issue_date}.csv") + logger.info( + "Number of records grabbed from source_dir/issue_date.csv", + num_records=len(df_ervisits), + source=f"{source_dir}/{issue_date}.csv", + ) df_ervisits = df_ervisits.rename(columns={"week_end": "timestamp"}) df_ervisits = df_ervisits.rename(columns=SIGNALS_MAP) From 2d8670d28477f017d0c16de5e41ffdd74ee00324 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Fri, 30 Aug 2024 16:54:13 -0400 Subject: [PATCH 27/53] adjust unit tests --- nssp/tests/test_pull.py | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/nssp/tests/test_pull.py b/nssp/tests/test_pull.py index 488aaced8..9e9a8a103 100644 --- a/nssp/tests/test_pull.py +++ b/nssp/tests/test_pull.py @@ -24,18 +24,29 @@ class TestPullNSSPData(unittest.TestCase): @patch("delphi_nssp.pull.Socrata") def test_pull_nssp_data_for_patch(self, mock_socrata): - source_dir = "source_dir" - issue_date = "2021-01-02" - test_source_data = pd.read_csv(f"{source_dir}/{issue_date}.csv") + params = { + "common": { + "custom_run": True, + }, + "patch": { + "current_issue": "2021-01-02", + "source_dir": "source_dir" + } + } mock_logger = MagicMock() - result = pull_nssp_data("test_token", mock_logger, issue_date, source_dir) + mock_logger.name = "delphi_nssp.patch" + result = pull_nssp_data("test_token", params, mock_logger) # Check that loggger was called with correct info - mock_logger.info.assert_called_with(f"Grabbed {len(result)} records from {source_dir}/{issue_date}.csv") + mock_logger.info.assert_called_with("Number of records grabbed from source_dir/issue_date.csv", + num_records=len(result), + source="source_dir/2021-01-02.csv") + test_source_data = pd.read_csv("source_dir/2021-01-02.csv") assert test_source_data.shape[0] == result.shape[0] # Check if the number of rows are the same mock_socrata.assert_not_called() + @patch("delphi_nssp.pull.Socrata") def test_pull_nssp_data(self, mock_socrata): # Load test data @@ -48,14 +59,17 @@ def test_pull_nssp_data(self, mock_socrata): mock_socrata.return_value = mock_client mock_logger = MagicMock() + params = { "common": { "custom_run": False } } # Call function with test token test_token = "test_token" - result = pull_nssp_data(test_token, mock_logger) + result = pull_nssp_data(test_token, params, mock_logger) print(result) # Check that loggger was called with correct info - mock_logger.info.assert_called_with(f"Grabbed {len(result)} records from Socrata API") + mock_logger.info.assert_called_with("Number of records grabbed from Socrata API", + num_records=len(result), + source="Socrata API") # Check that Socrata client was initialized with correct arguments mock_socrata.assert_called_once_with("data.cdc.gov", test_token) From f0335f61e8c2ab63bca94c7e224a566b221156b7 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Fri, 30 Aug 2024 20:14:04 -0400 Subject: [PATCH 28/53] more unit test adjustment --- nssp/tests/test_patch.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nssp/tests/test_patch.py b/nssp/tests/test_patch.py index a701bf8ec..4b3197a12 100644 --- a/nssp/tests/test_patch.py +++ b/nssp/tests/test_patch.py @@ -69,7 +69,7 @@ def test_config_missing_end_issue_in_patch_section(self, mock_logger): } assert not good_patch_config(patch_config, mock_logger) mock_logger.error.assert_has_calls([ - call("Patch section is missing required key(s): end_issue"), + call("Patch section is missing required key(s)", missing_keys=["end_issue"]), ]) @mock_patch('logging.Logger') @@ -89,7 +89,7 @@ def test_config_invalid_start_issue_and_missing_source_dir(self, mock_logger): assert not good_patch_config(patch_config, mock_logger) mock_logger.error.assert_has_calls([ call("Issue dates must be in YYYY-MM-DD format."), - call("Source directory bad_source_dir does not exist.") + call("Source directory does not exist.", source_dir="bad_source_dir") ]) @mock_patch('logging.Logger') @@ -164,6 +164,7 @@ def test_patch_confirm_dir_structure_created(self, mock_read_params, mock_get_st @mock_patch('delphi_nssp.patch.get_structured_logger') @mock_patch('delphi_nssp.patch.read_params') def test_patch_confirm_values_generated(self, mock_read_params, mock_get_structured_logger): + mock_get_structured_logger.return_value.name = "delphi_nssp.patch" mock_read_params.return_value = { "common": { "log_filename": "test.log", From 7e06f94d7b6a9668ad8e9843e6838f5c8c369a63 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Tue, 3 Sep 2024 15:16:31 -0400 Subject: [PATCH 29/53] move get_source_data to pull.py + make get_source_data run when source_dir not exist/empty + adjust tests accordingly --- nssp/delphi_nssp/patch.py | 66 ++++++--------------------------------- nssp/delphi_nssp/pull.py | 47 ++++++++++++++++++++++++++++ nssp/tests/test_patch.py | 44 +++----------------------- nssp/tests/test_pull.py | 34 ++++++++++++++++++++ 4 files changed, 95 insertions(+), 96 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 921183456..9b12ec7ac 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -31,57 +31,15 @@ import sys from datetime import datetime, timedelta -from os import makedirs, path +from os import listdir, makedirs, path -import pandas as pd -import paramiko from delphi_utils import get_structured_logger, read_params from epiweeks import Week +from .pull import get_source_data from .run import run_module -def get_source_data(params, logger): - """ - Download source data from the backup server. - - This function uses 'source_backup_credentials' in params to connect to a server where backup source data is stored. - It then searches for CSV files that match the inclusive range of issue dates - and location specified by 'path', 'start_issue', and 'end_issue'. - These CSV files are then downloaded and stored in the 'source_dir' directory. - """ - ssh = paramiko.SSHClient() - ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) - host = params["patch"]["source_backup_credentials"]["host"] - user = params["patch"]["source_backup_credentials"]["user"] - ssh.connect(host, username=user) - - # Generate file names of source files to download - dates = pd.date_range(start=params["patch"]["start_issue"], end=params["patch"]["end_issue"]) - csv_file_names = [date.strftime("%Y-%m-%d") + ".csv" for date in dates] - - # Download source files - sftp = ssh.open_sftp() - sftp.chdir(params["patch"]["source_backup_credentials"]["path"]) - num_files_transferred = 0 - for remote_file_name in csv_file_names: - try: - local_file_path = path.join(params["patch"]["source_dir"], remote_file_name) - sftp.stat(remote_file_name) - sftp.get(remote_file_name, local_file_path) - num_files_transferred += 1 - except IOError: - logger.warning( - "Source backup for this date does not exist on the remote server.", missing_filename=remote_file_name - ) - sftp.close() - ssh.close() - - if num_files_transferred == 0: - logger.error("No source data was transferred. Check the source backup server for potential issues.") - sys.exit(1) - - def good_patch_config(params, logger): """ Check if the params.json file is correctly configured for patching. @@ -118,10 +76,6 @@ def good_patch_config(params, logger): logger.error("Issue dates must be in YYYY-MM-DD format.") valid_config = False - if not path.isdir(patch_config["source_dir"]): - logger.error("Source directory does not exist.", source_dir=patch_config["source_dir"]) - valid_config = False - if valid_config: logger.info("Good patch configuration.") return True @@ -135,9 +89,10 @@ def patch(): The range of issue dates is specified in params.json using the following keys: - "patch": Only used for patching data - - "source_backup_credentials": (Optional) - Add this object to download source data from a backup server to source_dir. - Remove to assume source csv are already in source_dir. + - "source_backup_credentials": (optional) dict, credentials to log in to + server where historical source data is backed up. + if "source_dir" doesn't exist or has no files in it, we download source data to source_dir before running patch. + else, we assume all needed source files are already in source_dir. - "host": str, hostname of the server where source data is backed up - "user": str, username to log in to the server - "path": str, path to the directory containing backup csv files @@ -151,7 +106,8 @@ def patch(): if not good_patch_config(params, logger): sys.exit(1) - if "source_backup_credentials" in params["patch"]: + source_dir = params["patch"]["source_dir"] + if not path.isdir(source_dir) or not listdir(source_dir): get_source_data(params, logger) start_issue = datetime.strptime(params["patch"]["start_issue"], "%Y-%m-%d") @@ -159,7 +115,7 @@ def patch(): logger.info(start_issue=start_issue.strftime("%Y-%m-%d")) logger.info(end_issue=end_issue.strftime("%Y-%m-%d")) - logger.info(source_dir=params["patch"]["source_dir"]) + logger.info(source_dir=source_dir) logger.info(patch_dir=params["patch"]["patch_dir"]) makedirs(params["patch"]["patch_dir"], exist_ok=True) @@ -168,9 +124,7 @@ def patch(): while current_issue <= end_issue: logger.info("patching issue", issue_date=current_issue.strftime("%Y-%m-%d")) - current_issue_source_csv = ( - f"""{params.get("patch", {}).get("source_dir")}/{current_issue.strftime("%Y-%m-%d")}.csv""" - ) + current_issue_source_csv = f"""{source_dir}/{current_issue.strftime("%Y-%m-%d")}.csv""" if not path.isfile(current_issue_source_csv): logger.info("No source data at this path", current_issue_source_csv=current_issue_source_csv) current_issue += timedelta(days=1) diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index 66852d05e..8b37f82ff 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -1,13 +1,60 @@ # -*- coding: utf-8 -*- """Functions for pulling NSSP ER data.""" +import sys import textwrap +from os import makedirs, path import pandas as pd +import paramiko from sodapy import Socrata from .constants import NEWLINE, SIGNALS, SIGNALS_MAP, TYPE_DICT + +def get_source_data(params, logger): + """ + Download historical source data from a backup server. + + This function uses 'source_backup_credentials' configuration in params to connect + to a server where backup nssp source data is stored. + It then searches for CSV files that match the inclusive range of issue dates + and location specified by 'path', 'start_issue', and 'end_issue'. + These CSV files are then downloaded and stored in the 'source_dir' directory. + Note: This function is typically used in patching only. Normal runs grab latest data from SODA API. + """ + makedirs(params["patch"]["source_dir"], exist_ok=True) + ssh = paramiko.SSHClient() + ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) + host = params["patch"]["source_backup_credentials"]["host"] + user = params["patch"]["source_backup_credentials"]["user"] + ssh.connect(host, username=user) + + # Generate file names of source files to download + dates = pd.date_range(start=params["patch"]["start_issue"], end=params["patch"]["end_issue"]) + csv_file_names = [date.strftime("%Y-%m-%d") + ".csv" for date in dates] + + # Download source files + sftp = ssh.open_sftp() + sftp.chdir(params["patch"]["source_backup_credentials"]["path"]) + num_files_transferred = 0 + for remote_file_name in csv_file_names: + try: + local_file_path = path.join(params["patch"]["source_dir"], remote_file_name) + sftp.stat(remote_file_name) + sftp.get(remote_file_name, local_file_path) + num_files_transferred += 1 + except IOError: + logger.warning( + "Source backup for this date does not exist on the remote server.", missing_filename=remote_file_name + ) + sftp.close() + ssh.close() + + if num_files_transferred == 0: + logger.error("No source data was transferred. Check the source backup server for potential issues.") + sys.exit(1) + def warn_string(df, type_dict): """Format the warning string.""" warn = textwrap.dedent( diff --git a/nssp/tests/test_patch.py b/nssp/tests/test_patch.py index 4b3197a12..5d41d02ac 100644 --- a/nssp/tests/test_patch.py +++ b/nssp/tests/test_patch.py @@ -7,41 +7,6 @@ import pandas as pd class TestPatchModule: - @mock_patch('paramiko.SSHClient') - def test_get_source_data(self,mock_ssh): - # Mock the SSH and SFTP clients - mock_sftp = MagicMock() - mock_ssh.return_value.open_sftp.return_value = mock_sftp - - # Define the parameters for the function - params = { - "patch": { - "source_backup_credentials": { - "host": "hostname", - "user": "user", - "path": "/path/to/remote/dir" - }, - "start_issue": "2021-01-01", - "end_issue": "2021-01-03", - "source_dir": "/path/to/local/dir" - } - } - - # Mock the logger - logger = MagicMock() - # Call the function - get_source_data(params, logger) - - # Check that the SSH client was used correctly - mock_ssh.return_value.connect.assert_called_once_with(params["patch"]["source_backup_credentials"]["host"], username=params["patch"]["source_backup_credentials"]["user"]) - mock_ssh.return_value.close.assert_called_once() - - # Check that the SFTP client was used correctly - mock_sftp.chdir.assert_called_once_with(params["patch"]["source_backup_credentials"]["path"]) - assert mock_sftp.get.call_count == 3 # one call for each date in the range - mock_sftp.close.assert_called_once() - - @mock_patch('logging.Logger') def test_config_missing_custom_run_and_patch_section(self, mock_logger): # Case 1: missing custom_run flag and patch section @@ -73,8 +38,8 @@ def test_config_missing_end_issue_in_patch_section(self, mock_logger): ]) @mock_patch('logging.Logger') - def test_config_invalid_start_issue_and_missing_source_dir(self, mock_logger): - # Case 3: start_issue not in yyyy-mm-dd format and source_dir doesn't exist. + def test_config_invalid_start_issue(self, mock_logger): + # Case 3: start_issue not in yyyy-mm-dd format patch_config = { "common": { "custom_run": True, @@ -83,13 +48,12 @@ def test_config_invalid_start_issue_and_missing_source_dir(self, mock_logger): "patch_dir": "dir", "start_issue": "01-01-2024", "end_issue": "2024-04-22", - "source_dir": "bad_source_dir" + "source_dir": "source_dir" } } assert not good_patch_config(patch_config, mock_logger) mock_logger.error.assert_has_calls([ - call("Issue dates must be in YYYY-MM-DD format."), - call("Source directory does not exist.", source_dir="bad_source_dir") + call("Issue dates must be in YYYY-MM-DD format.") ]) @mock_patch('logging.Logger') diff --git a/nssp/tests/test_pull.py b/nssp/tests/test_pull.py index 9e9a8a103..d8cf286d9 100644 --- a/nssp/tests/test_pull.py +++ b/nssp/tests/test_pull.py @@ -4,6 +4,7 @@ from unittest.mock import patch, MagicMock import tempfile import os +import shutil import time from datetime import datetime import pdb @@ -11,6 +12,7 @@ import pandas.api.types as ptypes from delphi_nssp.pull import ( + get_source_data, pull_nssp_data, ) from delphi_nssp.constants import ( @@ -22,6 +24,38 @@ class TestPullNSSPData(unittest.TestCase): + @patch('paramiko.SSHClient') + def test_get_source_data(self,mock_ssh): + mock_sftp = MagicMock() + mock_ssh.return_value.open_sftp.return_value = mock_sftp + + params = { + "patch": { + "source_backup_credentials": { + "host": "hostname", + "user": "user", + "path": "/path/to/remote/dir" + }, + "start_issue": "2021-01-01", + "end_issue": "2021-01-03", + "source_dir": "./source_data" + } + } + logger = MagicMock() + + get_source_data(params, logger) + + # Check that the SSH client was used correctly + mock_ssh.return_value.connect.assert_called_once_with(params["patch"]["source_backup_credentials"]["host"], username=params["patch"]["source_backup_credentials"]["user"]) + mock_ssh.return_value.close.assert_called_once() + + # Check that the SFTP client was used correctly + mock_sftp.chdir.assert_called_once_with(params["patch"]["source_backup_credentials"]["path"]) + assert mock_sftp.get.call_count == 3 # one call for each date in the range + mock_sftp.close.assert_called_once() + + shutil.rmtree(params['patch']['source_dir']) + @patch("delphi_nssp.pull.Socrata") def test_pull_nssp_data_for_patch(self, mock_socrata): params = { From e678ce622753074b2fb664303d7bda2dfc0d9ba2 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Tue, 3 Sep 2024 16:51:46 -0400 Subject: [PATCH 30/53] auto-remove source_dir content after finish patch run --- nssp/delphi_nssp/patch.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 9b12ec7ac..89deda6e6 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -32,6 +32,7 @@ import sys from datetime import datetime, timedelta from os import listdir, makedirs, path +from shutil import rmtree from delphi_utils import get_structured_logger, read_params from epiweeks import Week @@ -107,8 +108,10 @@ def patch(): sys.exit(1) source_dir = params["patch"]["source_dir"] + downloaded_source = False if not path.isdir(source_dir) or not listdir(source_dir): get_source_data(params, logger) + downloaded_source = True start_issue = datetime.strptime(params["patch"]["start_issue"], "%Y-%m-%d") end_issue = datetime.strptime(params["patch"]["end_issue"], "%Y-%m-%d") @@ -144,6 +147,8 @@ def patch(): run_module(params, logger) current_issue += timedelta(days=1) + if downloaded_source: + rmtree(source_dir) if __name__ == "__main__": patch() From bc1d7a74bd84ccfe042a6125902bec55dc1cb9e6 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Tue, 3 Sep 2024 16:56:13 -0400 Subject: [PATCH 31/53] lint happy --- nssp/delphi_nssp/patch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 89deda6e6..9e8d16ab3 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -150,5 +150,6 @@ def patch(): if downloaded_source: rmtree(source_dir) + if __name__ == "__main__": patch() From 84cba845faad3009c84aabdb52986407ad31fd6b Mon Sep 17 00:00:00 2001 From: minhkhul <118945681+minhkhul@users.noreply.github.com> Date: Tue, 10 Sep 2024 14:57:03 -0400 Subject: [PATCH 32/53] Update pull.py --- nssp/delphi_nssp/pull.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index 8b37f82ff..0b2c5faf4 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -48,7 +48,6 @@ def get_source_data(params, logger): logger.warning( "Source backup for this date does not exist on the remote server.", missing_filename=remote_file_name ) - sftp.close() ssh.close() if num_files_transferred == 0: From 742737ba23bb8c25ff53e2bf4382791b71a5c209 Mon Sep 17 00:00:00 2001 From: minhkhul <118945681+minhkhul@users.noreply.github.com> Date: Tue, 10 Sep 2024 15:03:23 -0400 Subject: [PATCH 33/53] Update pull.py - remove stat debug --- nssp/delphi_nssp/pull.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index 0b2c5faf4..e949d6a9a 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -41,7 +41,6 @@ def get_source_data(params, logger): for remote_file_name in csv_file_names: try: local_file_path = path.join(params["patch"]["source_dir"], remote_file_name) - sftp.stat(remote_file_name) sftp.get(remote_file_name, local_file_path) num_files_transferred += 1 except IOError: From e13d3dbde8f929f850fcc0d78af33d95d0f4555c Mon Sep 17 00:00:00 2001 From: minhkhul Date: Tue, 10 Sep 2024 15:31:00 -0400 Subject: [PATCH 34/53] add progress log for source file download --- nssp/delphi_nssp/pull.py | 14 ++++++++++++-- nssp/tests/test_pull.py | 1 - 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index e949d6a9a..e60fbf694 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- """Functions for pulling NSSP ER data.""" +import functools import sys import textwrap from os import makedirs, path @@ -11,6 +12,13 @@ from .constants import NEWLINE, SIGNALS, SIGNALS_MAP, TYPE_DICT +def print_callback(remote_file_name, logger, bytes_so_far, bytes_total, progress_chunks): + """Print the callback information.""" + rough_percent_transferred = int(100 * (bytes_so_far / bytes_total)) + if rough_percent_transferred in progress_chunks: + logger.info("Transfer in progress", remote_file_name=remote_file_name, percent=rough_percent_transferred) + # Remove progress chunk, so it is not logged again + progress_chunks.remove(rough_percent_transferred) def get_source_data(params, logger): """ @@ -39,9 +47,11 @@ def get_source_data(params, logger): sftp.chdir(params["patch"]["source_backup_credentials"]["path"]) num_files_transferred = 0 for remote_file_name in csv_file_names: + callback_for_filename = functools.partial(print_callback, remote_file_name, logger, progress_chunks=[0,50]) + local_file_path = path.join(params["patch"]["source_dir"], remote_file_name) try: - local_file_path = path.join(params["patch"]["source_dir"], remote_file_name) - sftp.get(remote_file_name, local_file_path) + sftp.get(remote_file_name, local_file_path, callback=callback_for_filename) + logger.info("Transfer finished", remote_file_name=remote_file_name, local_file_path=local_file_path) num_files_transferred += 1 except IOError: logger.warning( diff --git a/nssp/tests/test_pull.py b/nssp/tests/test_pull.py index d8cf286d9..3d611c703 100644 --- a/nssp/tests/test_pull.py +++ b/nssp/tests/test_pull.py @@ -52,7 +52,6 @@ def test_get_source_data(self,mock_ssh): # Check that the SFTP client was used correctly mock_sftp.chdir.assert_called_once_with(params["patch"]["source_backup_credentials"]["path"]) assert mock_sftp.get.call_count == 3 # one call for each date in the range - mock_sftp.close.assert_called_once() shutil.rmtree(params['patch']['source_dir']) From 9cec6ff0edbf81b79addb11c4ffb779fbaae7914 Mon Sep 17 00:00:00 2001 From: minhkhul <118945681+minhkhul@users.noreply.github.com> Date: Tue, 10 Sep 2024 15:43:14 -0400 Subject: [PATCH 35/53] lint --- nssp/delphi_nssp/pull.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index e60fbf694..2006bf247 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -47,7 +47,7 @@ def get_source_data(params, logger): sftp.chdir(params["patch"]["source_backup_credentials"]["path"]) num_files_transferred = 0 for remote_file_name in csv_file_names: - callback_for_filename = functools.partial(print_callback, remote_file_name, logger, progress_chunks=[0,50]) + callback_for_filename = functools.partial(print_callback, remote_file_name, logger, progress_chunks=[0, 50]) local_file_path = path.join(params["patch"]["source_dir"], remote_file_name) try: sftp.get(remote_file_name, local_file_path, callback=callback_for_filename) From 5450d8ba35eda97f16eba4baebc6e7ea9f4bcb6c Mon Sep 17 00:00:00 2001 From: minhkhul Date: Tue, 10 Sep 2024 15:50:00 -0400 Subject: [PATCH 36/53] lint --- nssp/delphi_nssp/pull.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index 2006bf247..ba37e5524 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -12,6 +12,7 @@ from .constants import NEWLINE, SIGNALS, SIGNALS_MAP, TYPE_DICT + def print_callback(remote_file_name, logger, bytes_so_far, bytes_total, progress_chunks): """Print the callback information.""" rough_percent_transferred = int(100 * (bytes_so_far / bytes_total)) @@ -20,6 +21,7 @@ def print_callback(remote_file_name, logger, bytes_so_far, bytes_total, progress # Remove progress chunk, so it is not logged again progress_chunks.remove(rough_percent_transferred) + def get_source_data(params, logger): """ Download historical source data from a backup server. From ab4b5422e5e632ca6a3ebd9fe0efaffdf995bdc6 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Thu, 2 Jan 2025 19:43:33 -0500 Subject: [PATCH 37/53] rewrite get_source_data to get source data from prod backup_dir + add secondary source pull --- nssp/delphi_nssp/patch.py | 60 +++++++++++++++++++-------------------- nssp/delphi_nssp/pull.py | 39 ++++++++++++++++--------- 2 files changed, 54 insertions(+), 45 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 9e8d16ab3..5b990108d 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -1,8 +1,10 @@ """ This module is used for patching data in the delphi_nssp package. -To use this module, you need to turn on the custom_run flag -and specify the range of issue dates in params.json, like so: +The code assume user can use key-based auth to access prod server +where historical source data is stored. + +To use this module, configure params.json like so: { "common": { @@ -13,20 +15,28 @@ ... }, "patch": { - "source_backup_credentials": { - "host": "bigchunk-dev-02.delphi.cmu.edu", - "user": "user", - "path": "/common/source_backup/nssp" - }, - "patch_dir": "/Users/minhkhuele/Desktop/delphi/covidcast-indicators/nssp/AprilPatch", + "source_dir": "delphi/covidcast-indicators/nssp/source_data", + "user": "username", + "patch_dir": "delphi/covidcast-indicators/nssp/AprilPatch", "start_issue": "2024-04-20", "end_issue": "2024-04-21", - "source_dir": "/Users/minhkhuele/Desktop/delphi/covidcast-indicators/nssp/source_data" } } -It will generate data for that range of issue dates, and store them in batch issue format: -[name-of-patch]/issue_[issue-date]/nssp/actual_data_file.csv +In this params.json, we +- Turn on the "custom_run" flag under "common" +- Add "patch" section, which contains: + + "source_dir": the local directory where source data is downloaded to + + "user": the username to log in to the remote server where source data is backed up + + "patch_dir": the local directory where to write all patch issues output + + "start_date": str, YYYY-MM-DD format, first issue date + + "end_date": str, YYYY-MM-DD format, last issue date + +if "source_dir" doesn't exist locally or has no files in it, we download source data to source_dir +else, we assume all needed source files are already in source_dir. + +This module will generate data for that range of issue dates, and store them in batch issue format in the patch_dir: +[patch_dir]/issue_[issue-date]/nssp/actual_data_file.csv """ import sys @@ -61,7 +71,7 @@ def good_patch_config(params, logger): logger.error("Custom flag is on, but patch section is missing.") valid_config = False else: - required_patch_keys = ["start_issue", "end_issue", "patch_dir", "source_dir"] + required_patch_keys = ["start_issue", "end_issue", "patch_dir", "source_dir", "user"] missing_keys = [key for key in required_patch_keys if key not in patch_config] if missing_keys: logger.error("Patch section is missing required key(s)", missing_keys=missing_keys) @@ -87,20 +97,6 @@ def good_patch_config(params, logger): def patch(): """ Run the nssp indicator for a range of issue dates. - - The range of issue dates is specified in params.json using the following keys: - - "patch": Only used for patching data - - "source_backup_credentials": (optional) dict, credentials to log in to - server where historical source data is backed up. - if "source_dir" doesn't exist or has no files in it, we download source data to source_dir before running patch. - else, we assume all needed source files are already in source_dir. - - "host": str, hostname of the server where source data is backed up - - "user": str, username to log in to the server - - "path": str, path to the directory containing backup csv files - - "start_date": str, YYYY-MM-DD format, first issue date - - "end_date": str, YYYY-MM-DD format, last issue date - - "patch_dir": str, directory to write all issues output - - "source_dir": str, directory to read source data from. """ params = read_params() logger = get_structured_logger("delphi_nssp.patch", filename=params["common"]["log_filename"]) @@ -108,10 +104,12 @@ def patch(): sys.exit(1) source_dir = params["patch"]["source_dir"] - downloaded_source = False - if not path.isdir(source_dir) or not listdir(source_dir): + download_source = False + if not path.isdir(source_dir) or not listdir(source_dir): #no source dir or empty source dir + download_source = True get_source_data(params, logger) - downloaded_source = True + else: + logger.info("Source data already exists locally.") start_issue = datetime.strptime(params["patch"]["start_issue"], "%Y-%m-%d") end_issue = datetime.strptime(params["patch"]["end_issue"], "%Y-%m-%d") @@ -147,8 +145,8 @@ def patch(): run_module(params, logger) current_issue += timedelta(days=1) - if downloaded_source: - rmtree(source_dir) + # if download_source: + # rmtree(source_dir) if __name__ == "__main__": diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index 633e15438..895dca1bd 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -37,40 +37,51 @@ def print_callback(remote_file_name, logger, bytes_so_far, bytes_total, progress def get_source_data(params, logger): """ Download historical source data from a backup server. + This function is typically used in patching only. Normal runs grab latest data from SODA API. - This function uses 'source_backup_credentials' configuration in params to connect - to a server where backup nssp source data is stored. + This function uses "user" configuration under "patch" section in params.json to specify + a username with local key-based access to connect to server where backup nssp source data is stored. + It uses "backup_dir" config under "common" section to locate backup files on remote server. It then searches for CSV files that match the inclusive range of issue dates - and location specified by 'path', 'start_issue', and 'end_issue'. - These CSV files are then downloaded and stored in the 'source_dir' directory. - Note: This function is typically used in patching only. Normal runs grab latest data from SODA API. + specified by 'start_issue', and 'end_issue' config. + + These CSV files are then downloaded and stored in the local 'source_dir' directory. """ makedirs(params["patch"]["source_dir"], exist_ok=True) ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) - host = params["patch"]["source_backup_credentials"]["host"] - user = params["patch"]["source_backup_credentials"]["user"] + host = "delphi-master-prod-01.delphi.cmu.edu" + user = params["patch"]["user"] ssh.connect(host, username=user) # Generate file names of source files to download dates = pd.date_range(start=params["patch"]["start_issue"], end=params["patch"]["end_issue"]) - csv_file_names = [date.strftime("%Y-%m-%d") + ".csv" for date in dates] + primary_source_files = [f"{date.strftime("%Y%m%d")}.csv.gz" for date in dates] + secondary_source_files = [f"{date.strftime('%Y%m%d')}_secondary.csv.gz" for date in dates] + remote_source_files = primary_source_files + secondary_source_files # Download source files sftp = ssh.open_sftp() - sftp.chdir(params["patch"]["source_backup_credentials"]["path"]) + try: + sftp.stat(params["common"]["backup_dir"]) + except: + logger.error("Source backup directory does not exist on the remote server.") + + sftp.chdir(params["common"]["backup_dir"]) + num_files_transferred = 0 - for remote_file_name in csv_file_names: + for remote_file_name in remote_source_files: callback_for_filename = functools.partial(print_callback, remote_file_name, logger, progress_chunks=[0, 50]) local_file_path = path.join(params["patch"]["source_dir"], remote_file_name) try: - sftp.get(remote_file_name, local_file_path, callback=callback_for_filename) - logger.info("Transfer finished", remote_file_name=remote_file_name, local_file_path=local_file_path) - num_files_transferred += 1 - except IOError: + sftp.stat(remote_file_name) + except: logger.warning( "Source backup for this date does not exist on the remote server.", missing_filename=remote_file_name ) + sftp.get(remote_file_name, local_file_path, callback=callback_for_filename) + logger.info("Transfer finished", remote_file_name=remote_file_name, local_file_path=local_file_path) + num_files_transferred += 1 ssh.close() if num_files_transferred == 0: From 14b4e6fbd03fd83732511c1acdc5aad43480053b Mon Sep 17 00:00:00 2001 From: minhkhul Date: Sun, 5 Jan 2025 17:47:50 -0500 Subject: [PATCH 38/53] various bug fixes --- nssp/delphi_nssp/patch.py | 8 ++++---- nssp/delphi_nssp/pull.py | 7 ++++--- nssp/delphi_nssp/run.py | 7 +++++-- 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 5b990108d..7e088ece1 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -41,7 +41,7 @@ import sys from datetime import datetime, timedelta -from os import listdir, makedirs, path +from os import listdir, makedirs, path, getcwd from shutil import rmtree from delphi_utils import get_structured_logger, read_params @@ -123,15 +123,15 @@ def patch(): current_issue = start_issue while current_issue <= end_issue: - logger.info("patching issue", issue_date=current_issue.strftime("%Y-%m-%d")) + logger.info("patching issue", issue_date=current_issue.strftime("%Y%m%d")) - current_issue_source_csv = f"""{source_dir}/{current_issue.strftime("%Y-%m-%d")}.csv""" + current_issue_source_csv = f"""{source_dir}/{current_issue.strftime("%Y%m%d")}.csv.gz""" if not path.isfile(current_issue_source_csv): logger.info("No source data at this path", current_issue_source_csv=current_issue_source_csv) current_issue += timedelta(days=1) continue - params["patch"]["current_issue"] = current_issue.strftime("%Y-%m-%d") + params["patch"]["current_issue"] = current_issue.strftime("%Y%m%d") # current_issue_date can be different from params["patch"]["current_issue"] # due to weekly cadence of nssp data. For weekly sources, issue dates in our diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index 895dca1bd..4793c719a 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -56,7 +56,7 @@ def get_source_data(params, logger): # Generate file names of source files to download dates = pd.date_range(start=params["patch"]["start_issue"], end=params["patch"]["end_issue"]) - primary_source_files = [f"{date.strftime("%Y%m%d")}.csv.gz" for date in dates] + primary_source_files = [f"{date.strftime('%Y%m%d')}.csv.gz" for date in dates] secondary_source_files = [f"{date.strftime('%Y%m%d')}_secondary.csv.gz" for date in dates] remote_source_files = primary_source_files + secondary_source_files @@ -79,6 +79,7 @@ def get_source_data(params, logger): logger.warning( "Source backup for this date does not exist on the remote server.", missing_filename=remote_file_name ) + continue sftp.get(remote_file_name, local_file_path, callback=callback_for_filename) logger.info("Transfer finished", remote_file_name=remote_file_name, local_file_path=local_file_path) num_files_transferred += 1 @@ -136,7 +137,7 @@ def pull_with_socrata_api(socrata_token: str, dataset_id: str): def pull_nssp_data(socrata_token: str, backup_dir: str, custom_run: bool, issue_date: Optional[str] = None, logger: Optional[logging.Logger] = None): - """Pull the latest NSSP ER visits primary dataset. + """Pull the NSSP ER visits primary dataset. https://data.cdc.gov/Public-Health-Surveillance/NSSP-Emergency-Department-Visit-Trajectories-by-St/rdmq-nq56/data_preview @@ -213,7 +214,7 @@ def secondary_pull_nssp_data( elif custom_run and logger.name == "delphi_nssp.patch": if issue_date is None: raise ValueError("Issue date is required for patching") - source_filename = f"{backup_dir}/secondary_{issue_date}.csv.gz" + source_filename = f"{backup_dir}/{issue_date}_secondary.csv.gz" df_ervisits = pd.read_csv(source_filename) logger.info( "Number of records grabbed", diff --git a/nssp/delphi_nssp/run.py b/nssp/delphi_nssp/run.py index 40e9e41c6..a90fd7fa3 100644 --- a/nssp/delphi_nssp/run.py +++ b/nssp/delphi_nssp/run.py @@ -82,7 +82,10 @@ def run_module(params, logger=None): logger.warning("custom_run flag is on despite direct indicator run call. Normal indicator run continues.") custom_run = False export_dir = params["common"]["export_dir"] - backup_dir = params["common"]["backup_dir"] + if custom_run and logger.name == "delphi_nssp.patch": + backup_dir = params["patch"]["source_dir"] + else: + backup_dir = params["common"]["backup_dir"] custom_run = params["common"].get("custom_run", False) issue_date = params.get("patch", {}).get("current_issue", None) socrata_token = params["indicator"]["socrata_token"] @@ -92,7 +95,7 @@ def run_module(params, logger=None): ## build the base version of the signal at the most detailed geo level you can get. ## compute stuff here or farm out to another function or file - + # breakpoint() df_pull = pull_nssp_data(socrata_token, backup_dir, custom_run=custom_run, issue_date=issue_date, logger=logger) ## aggregate From d9e1f743fe531f4752e6379675dd4eda0deb688e Mon Sep 17 00:00:00 2001 From: minhkhul Date: Sun, 5 Jan 2025 19:26:02 -0500 Subject: [PATCH 39/53] remove source data from local after patch run --- nssp/delphi_nssp/patch.py | 8 ++++---- nssp/delphi_nssp/pull.py | 24 ++++++++++++++++-------- nssp/delphi_nssp/run.py | 4 +++- nssp/setup.py | 1 + 4 files changed, 24 insertions(+), 13 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 7e088ece1..2a38bf084 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -41,7 +41,7 @@ import sys from datetime import datetime, timedelta -from os import listdir, makedirs, path, getcwd +from os import listdir, makedirs, path from shutil import rmtree from delphi_utils import get_structured_logger, read_params @@ -105,7 +105,7 @@ def patch(): source_dir = params["patch"]["source_dir"] download_source = False - if not path.isdir(source_dir) or not listdir(source_dir): #no source dir or empty source dir + if not path.isdir(source_dir) or not listdir(source_dir): # no source dir or empty source dir download_source = True get_source_data(params, logger) else: @@ -145,8 +145,8 @@ def patch(): run_module(params, logger) current_issue += timedelta(days=1) - # if download_source: - # rmtree(source_dir) + if download_source: + rmtree(source_dir) if __name__ == "__main__": diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index 4793c719a..8fe12deff 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -1,12 +1,12 @@ # -*- coding: utf-8 -*- """Functions for pulling NSSP ER data.""" -import logging import functools +import logging import sys import textwrap -from typing import Optional from os import makedirs, path +from typing import Optional import pandas as pd import paramiko @@ -136,7 +136,13 @@ def pull_with_socrata_api(socrata_token: str, dataset_id: str): return results -def pull_nssp_data(socrata_token: str, backup_dir: str, custom_run: bool, issue_date: Optional[str] = None, logger: Optional[logging.Logger] = None): +def pull_nssp_data( + socrata_token: str, + backup_dir: str, + custom_run: bool, + issue_date: Optional[str] = None, + logger: Optional[logging.Logger] = None, +): """Pull the NSSP ER visits primary dataset. https://data.cdc.gov/Public-Health-Surveillance/NSSP-Emergency-Department-Visit-Trajectories-by-St/rdmq-nq56/data_preview @@ -166,7 +172,7 @@ def pull_nssp_data(socrata_token: str, backup_dir: str, custom_run: bool, issue_ num_records=len(df_ervisits), source=source_filename, ) - + df_ervisits = df_ervisits.rename(columns={"week_end": "timestamp"}) df_ervisits = df_ervisits.rename(columns=SIGNALS_MAP) @@ -183,7 +189,11 @@ def pull_nssp_data(socrata_token: str, backup_dir: str, custom_run: bool, issue_ def secondary_pull_nssp_data( - socrata_token: str, backup_dir: str, custom_run: bool, issue_date: Optional[str] = None, logger: Optional[logging.Logger] = None + socrata_token: str, + backup_dir: str, + custom_run: bool, + issue_date: Optional[str] = None, + logger: Optional[logging.Logger] = None, ): """Pull the latest NSSP ER visits secondary dataset. @@ -207,9 +217,7 @@ def secondary_pull_nssp_data( socrata_results = pull_with_socrata_api(socrata_token, "7mra-9cq9") df_ervisits = pd.DataFrame.from_records(socrata_results) create_backup_csv(df_ervisits, backup_dir, custom_run, sensor="secondary", logger=logger) - logger.info("Number of records grabbed", - num_records=len(df_ervisits), - source="secondary Socrata API") + logger.info("Number of records grabbed", num_records=len(df_ervisits), source="secondary Socrata API") elif custom_run and logger.name == "delphi_nssp.patch": if issue_date is None: diff --git a/nssp/delphi_nssp/run.py b/nssp/delphi_nssp/run.py index a90fd7fa3..acd752902 100644 --- a/nssp/delphi_nssp/run.py +++ b/nssp/delphi_nssp/run.py @@ -152,7 +152,9 @@ def run_module(params, logger=None): run_stats.append((max(dates), len(dates))) logger.info("Generating secondary signals") - secondary_df_pull = secondary_pull_nssp_data(socrata_token, backup_dir, custom_run=custom_run, issue_date=issue_date, logger=logger) + secondary_df_pull = secondary_pull_nssp_data( + socrata_token, backup_dir, custom_run=custom_run, issue_date=issue_date, logger=logger + ) for signal in SECONDARY_SIGNALS: secondary_df_pull_signal = secondary_df_pull[secondary_df_pull["signal"] == signal] if secondary_df_pull_signal.empty: diff --git a/nssp/setup.py b/nssp/setup.py index 80abe1e77..e6fbfa7ed 100644 --- a/nssp/setup.py +++ b/nssp/setup.py @@ -14,6 +14,7 @@ "freezegun", "us", "paramiko", + "darker", ] setup( From ca5294b51baeb18d7867f5dc49890c67cab1969b Mon Sep 17 00:00:00 2001 From: minhkhul Date: Sun, 5 Jan 2025 21:11:25 -0500 Subject: [PATCH 40/53] fix tests in test_pull --- nssp/delphi_nssp/pull.py | 4 ++-- nssp/tests/test_pull.py | 13 ++++--------- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index 8fe12deff..62b77c845 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -64,7 +64,7 @@ def get_source_data(params, logger): sftp = ssh.open_sftp() try: sftp.stat(params["common"]["backup_dir"]) - except: + except IOError: logger.error("Source backup directory does not exist on the remote server.") sftp.chdir(params["common"]["backup_dir"]) @@ -75,7 +75,7 @@ def get_source_data(params, logger): local_file_path = path.join(params["patch"]["source_dir"], remote_file_name) try: sftp.stat(remote_file_name) - except: + except IOError: logger.warning( "Source backup for this date does not exist on the remote server.", missing_filename=remote_file_name ) diff --git a/nssp/tests/test_pull.py b/nssp/tests/test_pull.py index c6d9bb1c8..49b8172fe 100644 --- a/nssp/tests/test_pull.py +++ b/nssp/tests/test_pull.py @@ -47,13 +47,13 @@ def test_pull_nssp_data(self, mock_socrata, caplog): logger = get_structured_logger() # Call function with test token test_token = "test_token" - result = pull_nssp_data(test_token, backup_dir, custom_run, logger) + result = pull_nssp_data(test_token, backup_dir, custom_run, logger=logger) # Check logger used: assert "Backup file created" in caplog.text # Check that backup file was created - backup_files = glob.glob(f"{backup_dir}/{today}*") + backup_files = glob.glob(f"{backup_dir}/{today}.*") assert len(backup_files) == 2, "Backup file was not created" expected_data = pd.DataFrame(test_data) @@ -65,11 +65,6 @@ def test_pull_nssp_data(self, mock_socrata, caplog): actual_data = pd.read_parquet(backup_file) pd.testing.assert_frame_equal(expected_data, actual_data) - # Check that loggger was called with correct info - mock_logger.info.assert_called_with("Number of records grabbed from Socrata API", - num_records=len(result), - source="Socrata API") - # Check that Socrata client was initialized with correct arguments mock_socrata.assert_called_once_with("data.cdc.gov", test_token) @@ -108,7 +103,7 @@ def test_secondary_pull_nssp_data(self, mock_socrata): logger = get_structured_logger() # Call function with test token test_token = "test_token" - result = secondary_pull_nssp_data(test_token, backup_dir, custom_run, logger) + result = secondary_pull_nssp_data(test_token, backup_dir, custom_run, logger=logger) # print(result) # Check that Socrata client was initialized with correct arguments @@ -124,7 +119,7 @@ def test_secondary_pull_nssp_data(self, mock_socrata): assert (result[result['geo_type'] == 'nation']['geo_value'] == 'National').all(), "All rows with geo_type 'nation' must have geo_value 'National'" # Check that backup file was created - backup_files = glob.glob(f"{backup_dir}/{today}*") + backup_files = glob.glob(f"{backup_dir}/{today}_secondary.*") assert len(backup_files) == 2, "Backup file was not created" for file in backup_files: os.remove(file) From 49c4f67f69e29543ddd66cc1978a53f64b02c0b6 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Tue, 7 Jan 2025 17:41:55 -0500 Subject: [PATCH 41/53] Add new + fix current patch tests + fix duplicated data --- nssp/delphi_nssp/patch.py | 40 +++++++++++++++++++++++--- nssp/delphi_nssp/pull.py | 8 +++++- nssp/delphi_nssp/run.py | 16 ++++++++++- nssp/tests/page_secondary_1.txt | 1 + nssp/tests/source_dir/2021-01-02.csv | 4 --- nssp/tests/source_dir/2021-01-08.csv | 4 --- nssp/tests/source_dir/2021-01-09.csv | 4 --- nssp/tests/source_dir/2021-01-12.csv | 4 --- nssp/tests/source_dir/20210102.csv.gz | Bin 0 -> 407 bytes nssp/tests/source_dir/20210108.csv.gz | Bin 0 -> 407 bytes nssp/tests/source_dir/20210109.csv.gz | Bin 0 -> 389 bytes nssp/tests/source_dir/20210112.csv.gz | Bin 0 -> 389 bytes nssp/tests/test_patch.py | 30 ++++++++++++++++--- 13 files changed, 85 insertions(+), 26 deletions(-) create mode 100644 nssp/tests/page_secondary_1.txt delete mode 100644 nssp/tests/source_dir/2021-01-02.csv delete mode 100644 nssp/tests/source_dir/2021-01-08.csv delete mode 100644 nssp/tests/source_dir/2021-01-09.csv delete mode 100644 nssp/tests/source_dir/2021-01-12.csv create mode 100644 nssp/tests/source_dir/20210102.csv.gz create mode 100644 nssp/tests/source_dir/20210108.csv.gz create mode 100644 nssp/tests/source_dir/20210109.csv.gz create mode 100644 nssp/tests/source_dir/20210112.csv.gz diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 2a38bf084..84a4711dd 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -44,6 +44,7 @@ from os import listdir, makedirs, path from shutil import rmtree +import pandas as pd from delphi_utils import get_structured_logger, read_params from epiweeks import Week @@ -94,6 +95,38 @@ def good_patch_config(params, logger): return False +def get_patch_dates(start_issue, end_issue, source_dir): + """ + Get the dates to run patch on given a range of issue dates. + + Due to weekly cadence of nssp data, dates to run patch on are not necessarily the same as issue dates. + We use the latest date with source data per epiweek as reporting date for patching of that week's data. + + Note that primary source files are available for all dates where secondary source files are available but not vice versa. + + start_issue: datetime object + end_issue: datetime object + """ + patch_dates = [] + date_range = pd.date_range(start=start_issue, end=end_issue) + dates_with_source_data = [ + date + for date in date_range + if path.isfile(f"""{source_dir}/{date.strftime("%Y%m%d")}.csv.gz""") + or path.isfile(f"""{source_dir}/{date.strftime("%Y%m%d")}_secondary.csv.gz""") + ] + epiweek_start_dates = sorted(list(set([Week.fromdate(date).startdate() for date in date_range]))) + for epiweek_start_date in epiweek_start_dates: + epiweek = Week.fromdate(epiweek_start_date) + dates_with_data_in_epiweek = [date for date in dates_with_source_data if date.date() in epiweek.iterdates()] + if dates_with_data_in_epiweek == []: + continue + latest_date_with_data = max(dates_with_data_in_epiweek) + patch_dates.append(latest_date_with_data) + patch_dates.sort() + return patch_dates + + def patch(): """ Run the nssp indicator for a range of issue dates. @@ -118,11 +151,11 @@ def patch(): logger.info(end_issue=end_issue.strftime("%Y-%m-%d")) logger.info(source_dir=source_dir) logger.info(patch_dir=params["patch"]["patch_dir"]) - makedirs(params["patch"]["patch_dir"], exist_ok=True) - current_issue = start_issue - while current_issue <= end_issue: + patch_dates = get_patch_dates(start_issue, end_issue, source_dir) + + for current_issue in patch_dates: logger.info("patching issue", issue_date=current_issue.strftime("%Y%m%d")) current_issue_source_csv = f"""{source_dir}/{current_issue.strftime("%Y%m%d")}.csv.gz""" @@ -143,7 +176,6 @@ def patch(): params["common"]["export_dir"] = f"""{current_issue_dir}""" run_module(params, logger) - current_issue += timedelta(days=1) if download_source: rmtree(source_dir) diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index 62b77c845..e45cfda64 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -166,6 +166,9 @@ def pull_nssp_data( if issue_date is None: raise ValueError("Issue date is required for patching") source_filename = f"{backup_dir}/{issue_date}.csv.gz" + if not path.isfile(source_filename): + logger.warning("No primary source data found", source=source_filename, issue_date=issue_date) + return None df_ervisits = pd.read_csv(source_filename) logger.info( "Number of records grabbed", @@ -195,7 +198,7 @@ def secondary_pull_nssp_data( issue_date: Optional[str] = None, logger: Optional[logging.Logger] = None, ): - """Pull the latest NSSP ER visits secondary dataset. + """Pull the NSSP ER visits secondary dataset. https://data.cdc.gov/Public-Health-Surveillance/2023-Respiratory-Virus-Response-NSSP-Emergency-Dep/7mra-9cq9/data_preview @@ -223,6 +226,9 @@ def secondary_pull_nssp_data( if issue_date is None: raise ValueError("Issue date is required for patching") source_filename = f"{backup_dir}/{issue_date}_secondary.csv.gz" + if not path.isfile(source_filename): + logger.warning("No secondary source data found", source=source_filename, issue_date=issue_date) + return None df_ervisits = pd.read_csv(source_filename) logger.info( "Number of records grabbed", diff --git a/nssp/delphi_nssp/run.py b/nssp/delphi_nssp/run.py index acd752902..0c3ec3baf 100644 --- a/nssp/delphi_nssp/run.py +++ b/nssp/delphi_nssp/run.py @@ -95,12 +95,15 @@ def run_module(params, logger=None): ## build the base version of the signal at the most detailed geo level you can get. ## compute stuff here or farm out to another function or file - # breakpoint() df_pull = pull_nssp_data(socrata_token, backup_dir, custom_run=custom_run, issue_date=issue_date, logger=logger) ## aggregate geo_mapper = GeoMapper() for signal in SIGNALS: + if df_pull is None and custom_run and \ + logger.name == "delphi_nssp.patch": + logger.warning("No primary source data pulled", issue_date=issue_date) + break for geo in GEOS: df = df_pull.copy() df["val"] = df[signal] @@ -155,14 +158,21 @@ def run_module(params, logger=None): secondary_df_pull = secondary_pull_nssp_data( socrata_token, backup_dir, custom_run=custom_run, issue_date=issue_date, logger=logger ) + if custom_run and logger.name == "delphi_nssp.patch" and secondary_df_pull is None: + logger.warning("No secondary source data pulled", issue_date=issue_date) + logging(start_time, run_stats, logger) + return + for signal in SECONDARY_SIGNALS: secondary_df_pull_signal = secondary_df_pull[secondary_df_pull["signal"] == signal] if secondary_df_pull_signal.empty: logger.warning("No data found for signal", signal=signal) continue + for geo in SECONDARY_GEOS: df = secondary_df_pull_signal.copy() logger.info("Generating signal and exporting to CSV", geo_type=geo, signal=signal) + if geo == "state": df = df[(df["geo_type"] == "state")] df["geo_id"] = df["geo_value"].apply( @@ -179,16 +189,20 @@ def run_module(params, logger=None): unexpected_state_names=unexpected_state_names["geo_value"].unique(), ) raise RuntimeError + elif geo == "nation": df = df[(df["geo_type"] == "nation")] df["geo_id"] = "us" + elif geo == "hhs": df = df[(df["geo_type"] == "hhs")] df["geo_id"] = df["geo_value"] + # add se, sample_size, and na codes missing_cols = set(CSV_COLS) - set(df.columns) df = add_needed_columns(df, col_names=list(missing_cols)) df_csv = df[CSV_COLS + ["timestamp"]] + # actual export dates = create_export_csv( df_csv, diff --git a/nssp/tests/page_secondary_1.txt b/nssp/tests/page_secondary_1.txt new file mode 100644 index 000000000..2ae4dd231 --- /dev/null +++ b/nssp/tests/page_secondary_1.txt @@ -0,0 +1 @@ +[{"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-01T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-08T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-15T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-22T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "11.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "13.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "9.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "9.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-10-29T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "12.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "10.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "9.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "13.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "8.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "9.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "11.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "12.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "11.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "9.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "10.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "8.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-05T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "9.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "9.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "9.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "10.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "8.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "9.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "10.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "9.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "11.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "9.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "9.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "8.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-12T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "10.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "9.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "9.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "8.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "9.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "8.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "9.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "8.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "12.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "9.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "11.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "10.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "9.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "8.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "9.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "10.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "9.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-19T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "10.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "8.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "9.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "10.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "13.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "11.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "10.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "8.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "9.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "9.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "10.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "8.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "9.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "11.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "9.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "8.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "13.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "12.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "11.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "9.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "11.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "11.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "10.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "10.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "13.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "14.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "8.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "11.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "16.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "9.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "10.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "15.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "12.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "9.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "10.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "9.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "16.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "11.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "9.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "11.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "10.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "14.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "8.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "14.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "10.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "8.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "10.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "11.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "10.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "10.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "12.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "11.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "10.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "8.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "11.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "16.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "12.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-11-26T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "13.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "9.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "8.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "11.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "10.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "11.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "8.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "9.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "11.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "13.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "12.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "8.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "9.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "10.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "11.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "10.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "8.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "11.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "13.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "15.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "9.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "11.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "13.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "8.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "9.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "15.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "8.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "9.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "11.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "10.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "15.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "10.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "11.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "11.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "10.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "14.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "9.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "9.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "14.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "8.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "9.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "11.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "9.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "10.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "10.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "10.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "9.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "12.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "9.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "10.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "15.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "10.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-03T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "11.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "10.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "11.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "8.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "12.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "8.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "9.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "9.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "13.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "12.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "9.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "9.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "10.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "10.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "11.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "12.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "14.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "10.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "11.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "10.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "10.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "11.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "9.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "13.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "10.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "8.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "11.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "9.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "9.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "17.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "8.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "8.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "14.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "10.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "11.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "14.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "10.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "13.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "8.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "8.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "11.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "8.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "10.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "9.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "8.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "8.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "8.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "12.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "10.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "8.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "13.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "10.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "9.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-10T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "10.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "8.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "9.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "10.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "8.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "12.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "10.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "8.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "9.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "11.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "9.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "9.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "9.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "9.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "12.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "10.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "13.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "12.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "10.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "13.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "11.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "12.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "9.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "11.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "8.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "11.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "8.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "17.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "16.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "9.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "10.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "12.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "11.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "11.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "11.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "10.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "8.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "11.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "13.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "11.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "9.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "9.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-17T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "10.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "9.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "9.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "11.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "9.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "8.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "9.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "8.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "9.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "9.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "12.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "9.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "12.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "12.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "12.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "12.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "13.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "8.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "11.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "9.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "15.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "8.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "11.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "9.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "9.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "11.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "10.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "9.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "9.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "12.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "13.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "9.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "9.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "8.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-24T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "8.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "9.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "9.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "9.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "9.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "9.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "10.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "11.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "11.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "9.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "12.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "9.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "11.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "8.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "10.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "8.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "8.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "8.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "11.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "10.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "8.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "9.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2022-12-31T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "8.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-07T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-14T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-21T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-01-28T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-04T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-11T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-18T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-02-25T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-04T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-11T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-18T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-03-25T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-01T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-08T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-15T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-22T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-04-29T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-06T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-13T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-20T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-05-27T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-03T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-10T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-17T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-06-24T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-01T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-08T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-15T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-22T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-07-29T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-05T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-12T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-19T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-08-26T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-02T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-09T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-16T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-23T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-09-30T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-07T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-14T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-21T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-10-28T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "8.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-04T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-11T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-18T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-11-25T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-02T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "9.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "8.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-09T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "8.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "9.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "9.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "11.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "10.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "8.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "10.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "12.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "8.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "11.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-16T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "11.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "10.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "9.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "13.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "12.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "14.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "10.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "9.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "9.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "9.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "10.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "8.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "12.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "8.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "9.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "11.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "8.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "8.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "13.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "16.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "9.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "10.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "10.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "15.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "10.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "9.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "9.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "10.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "11.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-23T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "8.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "10.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "9.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "9.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "9.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "8.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "14.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "8.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "11.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "9.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "14.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "10.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "10.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "9.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "10.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "8.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "9.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "10.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "10.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "11.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "10.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "12.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "8.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "10.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "9.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "9.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "10.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "12.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "13.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "10.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "13.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "8.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "18.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "9.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "9.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "9.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "9.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "11.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "12.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "9.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "10.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "9.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "8.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "8.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "15.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "12.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "9.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "12.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "12.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "14.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "9.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2023-12-30T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "11.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "8.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "10.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "8.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "8.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "8.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "8.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "9.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "9.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "10.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "9.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "11.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "11.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "12.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "9.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "8.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "10.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "10.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "8.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "10.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "9.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "11.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-06T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "8.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "8.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "9.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "9.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "9.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-13T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "8.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "8.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-20T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "8.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "8.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "9.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-01-27T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "8.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "7.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "8.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "9.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-03T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "8.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "9.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "6.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "7.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-10T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "6.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "9.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "7.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "7.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "6.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "8.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-17T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "8.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "8.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "6.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "7.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "6.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "7.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "6.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-02-24T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "7.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "7.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "6.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "5.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "7.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "7.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-02T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "5.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "5.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "5.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "5.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-09T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "5.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-16T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-23T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-03-30T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-06T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-13T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-20T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-04-27T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-04T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-11T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-18T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-05-25T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-01T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "6.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-08T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "6.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-15T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "5.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "6.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-22T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-06-29T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-06T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-13T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "COVID-19", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Influenza", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "RSV", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "4.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-20T00:00:00.000", "pathogen": "Combined", "geography": "Wyoming", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "4.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-07-27T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-03T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-10T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "4.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-17T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "4.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "4.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-24T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "3.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "4.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "4.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "3.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-08-31T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "3.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "4.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "3.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "3.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "5.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-07T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "4.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "3.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "3.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "3.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "4.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-14T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "3.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "2.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "3.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-21T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "2.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "2.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "2.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "2.4", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "2.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "2.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-09-28T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.9", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Increasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "2.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "1.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-05T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Alabama", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Alaska", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Arizona", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Arkansas", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "California", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Colorado", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Connecticut", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Delaware", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "District of Columbia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Florida", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Georgia", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Hawaii", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Idaho", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Illinois", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Indiana", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Iowa", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Kansas", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Kentucky", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Louisiana", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Maine", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Maryland", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Massachusetts", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Michigan", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Minnesota", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Mississippi", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Montana", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "National", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Nebraska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Nevada", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "New Jersey", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "New Mexico", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "New York", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "North Dakota", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Ohio", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Oklahoma", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Oregon", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Pennsylvania", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 1", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 10", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 2", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 3", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 4", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 5", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 6", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 8", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Region 9", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "South Carolina", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Tennessee", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Texas", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Utah", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Vermont", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Virginia", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Washington", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "West Virginia", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "COVID-19", "geography": "Wisconsin", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Alabama", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Alaska", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Arizona", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Arkansas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "California", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Colorado", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Florida", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Georgia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Hawaii", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Illinois", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Indiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Iowa", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Kansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Kentucky", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Louisiana", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Massachusetts", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Michigan", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Minnesota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Mississippi", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Montana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "National", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Nevada", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "New Mexico", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "New York", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "North Carolina", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "North Dakota", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Ohio", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Oklahoma", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Oregon", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Pennsylvania", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 1", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 10", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 4", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 5", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 6", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 8", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Region 9", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Rhode Island", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Tennessee", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Texas", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Utah", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Virginia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Washington", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "West Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Influenza", "geography": "Wisconsin", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Alabama", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Alaska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Arizona", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Arkansas", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "California", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Colorado", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Connecticut", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Delaware", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "District of Columbia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Florida", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Georgia", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Hawaii", "percent_visits": "0.3", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Idaho", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Illinois", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Indiana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Iowa", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Kansas", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Kentucky", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Louisiana", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Maine", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Maryland", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Massachusetts", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Michigan", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Minnesota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Mississippi", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Montana", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "National", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Nebraska", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Nevada", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "New Jersey", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "New Mexico", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "New York", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "North Carolina", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "North Dakota", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Ohio", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Oklahoma", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Oregon", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Pennsylvania", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 1", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 10", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 2", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 3", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 4", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 5", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 6", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 7", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 8", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Region 9", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Rhode Island", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "South Carolina", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Tennessee", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Texas", "percent_visits": "0.2", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Utah", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Vermont", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Virginia", "percent_visits": "0.1", "status": "Reporting", "trend_on_date": "Increasing", "recent_trend": "Increasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Washington", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "West Virginia", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "RSV", "geography": "Wisconsin", "percent_visits": "0.0", "status": "Reporting", "trend_on_date": "No Change", "recent_trend": "No Change"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Alabama", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Alaska", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Arizona", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Arkansas", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "California", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Colorado", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Connecticut", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Delaware", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "District of Columbia", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Florida", "percent_visits": "1.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Georgia", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Hawaii", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Idaho", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Illinois", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Indiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Iowa", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Kansas", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Kentucky", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Louisiana", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Maine", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Maryland", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Massachusetts", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Michigan", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Minnesota", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Mississippi", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Montana", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "National", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Nebraska", "percent_visits": "0.6", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Nevada", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "New Jersey", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "New Mexico", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "New York", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "North Carolina", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "North Dakota", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Ohio", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Oklahoma", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Oregon", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Pennsylvania", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 1", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 10", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 2", "percent_visits": "0.7", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 3", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 4", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 5", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 6", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 7", "percent_visits": "0.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 8", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Region 9", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Rhode Island", "percent_visits": "0.5", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "South Carolina", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Tennessee", "percent_visits": "0.8", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Texas", "percent_visits": "0.9", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Utah", "percent_visits": "1.1", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Vermont", "percent_visits": "1.3", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Virginia", "percent_visits": "1.0", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Washington", "percent_visits": "1.4", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "West Virginia", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}, {"week_end": "2024-10-12T00:00:00.000", "pathogen": "Combined", "geography": "Wisconsin", "percent_visits": "1.2", "status": "Reporting", "trend_on_date": "Decreasing", "recent_trend": "Decreasing"}] \ No newline at end of file diff --git a/nssp/tests/source_dir/2021-01-02.csv b/nssp/tests/source_dir/2021-01-02.csv deleted file mode 100644 index 7ae1b3340..000000000 --- a/nssp/tests/source_dir/2021-01-02.csv +++ /dev/null @@ -1,4 +0,0 @@ -week_end,geography,county,percent_visits_combined,percent_visits_covid,percent_visits_influenza,percent_visits_rsv,percent_visits_smoothed,percent_visits_smoothed_covid,percent_visits_smoothed_1,percent_visits_smoothed_rsv,ed_trends_covid,ed_trends_influenza,ed_trends_rsv,hsa,hsa_counties,hsa_nci_id,fips,trend_source -2020-10-01T00:00:00.000,United States,All,2.84,1.84,0.48,0.55,2.83,2.07,0.34,0.44,Decreasing,Increasing,Increasing,All,All,All,0,United States -2020-06-29T00:00:00.000,Alabama,All,1.01,0.85,0.17,0.0,0.89,0.66,0.22,0.03,Increasing,Decreasing,No Change,All,All,All,1000,State -2020-02-25T00:00:00.000,Alabama,Blount,,,,,,,,,Data Unavailable,Data Unavailable,Data Unavailable,"Jefferson (Birmingham), AL - Shelby, AL","Bibb, Blount, Chilton, Cullman, Jefferson, Shelby, St. Clair, Walker",150,1009,HSA diff --git a/nssp/tests/source_dir/2021-01-08.csv b/nssp/tests/source_dir/2021-01-08.csv deleted file mode 100644 index 7ae1b3340..000000000 --- a/nssp/tests/source_dir/2021-01-08.csv +++ /dev/null @@ -1,4 +0,0 @@ -week_end,geography,county,percent_visits_combined,percent_visits_covid,percent_visits_influenza,percent_visits_rsv,percent_visits_smoothed,percent_visits_smoothed_covid,percent_visits_smoothed_1,percent_visits_smoothed_rsv,ed_trends_covid,ed_trends_influenza,ed_trends_rsv,hsa,hsa_counties,hsa_nci_id,fips,trend_source -2020-10-01T00:00:00.000,United States,All,2.84,1.84,0.48,0.55,2.83,2.07,0.34,0.44,Decreasing,Increasing,Increasing,All,All,All,0,United States -2020-06-29T00:00:00.000,Alabama,All,1.01,0.85,0.17,0.0,0.89,0.66,0.22,0.03,Increasing,Decreasing,No Change,All,All,All,1000,State -2020-02-25T00:00:00.000,Alabama,Blount,,,,,,,,,Data Unavailable,Data Unavailable,Data Unavailable,"Jefferson (Birmingham), AL - Shelby, AL","Bibb, Blount, Chilton, Cullman, Jefferson, Shelby, St. Clair, Walker",150,1009,HSA diff --git a/nssp/tests/source_dir/2021-01-09.csv b/nssp/tests/source_dir/2021-01-09.csv deleted file mode 100644 index 5c8012ac0..000000000 --- a/nssp/tests/source_dir/2021-01-09.csv +++ /dev/null @@ -1,4 +0,0 @@ -week_end,geography,county,percent_visits_combined,percent_visits_covid,percent_visits_influenza,percent_visits_rsv,percent_visits_smoothed,percent_visits_smoothed_covid,percent_visits_smoothed_1,percent_visits_smoothed_rsv,ed_trends_covid,ed_trends_influenza,ed_trends_rsv,hsa,hsa_counties,hsa_nci_id,fips,trend_source -2020-10-01T00:00:00.000,United States,All,1,1,1,1,1,1,1,1,Decreasing,Decreasing,Decreasing,All,All,All,0,United States -2020-06-29T00:00:00.000,Oklahoma,All,1.01,0.85,0.17,0.0,0.89,0.66,0.22,0.03,Increasing,Decreasing,No Change,All,All,All,1000,State -2020-02-25T00:00:00.000,Alabama,Blount,,,,,,,,,Data Unavailable,Data Unavailable,Data Unavailable,"Jefferson (Birmingham), AL - Shelby, AL","Bibb, Blount, Chilton, Cullman, Jefferson, Shelby, St. Clair, Walker",150,1009,HSA diff --git a/nssp/tests/source_dir/2021-01-12.csv b/nssp/tests/source_dir/2021-01-12.csv deleted file mode 100644 index 5c8012ac0..000000000 --- a/nssp/tests/source_dir/2021-01-12.csv +++ /dev/null @@ -1,4 +0,0 @@ -week_end,geography,county,percent_visits_combined,percent_visits_covid,percent_visits_influenza,percent_visits_rsv,percent_visits_smoothed,percent_visits_smoothed_covid,percent_visits_smoothed_1,percent_visits_smoothed_rsv,ed_trends_covid,ed_trends_influenza,ed_trends_rsv,hsa,hsa_counties,hsa_nci_id,fips,trend_source -2020-10-01T00:00:00.000,United States,All,1,1,1,1,1,1,1,1,Decreasing,Decreasing,Decreasing,All,All,All,0,United States -2020-06-29T00:00:00.000,Oklahoma,All,1.01,0.85,0.17,0.0,0.89,0.66,0.22,0.03,Increasing,Decreasing,No Change,All,All,All,1000,State -2020-02-25T00:00:00.000,Alabama,Blount,,,,,,,,,Data Unavailable,Data Unavailable,Data Unavailable,"Jefferson (Birmingham), AL - Shelby, AL","Bibb, Blount, Chilton, Cullman, Jefferson, Shelby, St. Clair, Walker",150,1009,HSA diff --git a/nssp/tests/source_dir/20210102.csv.gz b/nssp/tests/source_dir/20210102.csv.gz new file mode 100644 index 0000000000000000000000000000000000000000..b1f1c694db74229883baa40fe3a2a01930d4f3b6 GIT binary patch literal 407 zcmV;I0cidoiwFoQ-F9aH12Ql&F)c7LEif`JV{>)@jZndE;xG`s_bV(;tu%@3Kq%}D z+QaUu+6!Ct7)`=JtU5Nb4J-QfJI)qpfl3?2&ogg4^Pc^O=(Qrdgf+Rf$4$G3#%*of z!-jlAHdZ?wbPQGFx>{RWUh+GAL2A1)Te5F>UhrXePKD07*j^4k@YfZNRrO^hY4H|4 zU+>`al%Fh~xYW@GOsnc&K~v}x+vtkBS9%kmKU)R2W!0NP7BW*Zlj^sW-}*n7Qo^&< zk(Oc+G4hC+F;L`_5vT+*A59p_GI2u&dC%#vFO1-k8c!IsUBeH1Elk4>>rCjM9XZa5 z>1R7LgEe;8_o!SdmYS3dDk;m9O&P{xhN4K+@T1}fOTV0WXwk0elMR(LdJFFkimWKF zJD8jFu5kDsF`{_3xI@hc4E+Z&_(`i3`QWU$oonB*trojG5VI$diA77M-lt>$gSoD2 z5bu&~T$|`D2U}x0)@jZndE;xG`s_bV(;tu%@3Kq%}D z+QaUu+6!Ct7)`=JtU5Nb4J-QfJI)qpfl3?2&ogg4^Pc^O=(Qrdgf+Rf$4$G3#%*of z!-jlAHdZ?wbPQGFx>{RWUh+GAL2A1)Te5F>UhrXePKD07*j^4k@YfZNRrO^hY4H|4 zU+>`al%Fh~xYW@GOsnc&K~v}x+vtkBS9%kmKU)R2W!0NP7BW*Zlj^sW-}*n7Qo^&< zk(Oc+G4hC+F;L`_5vT+*A59p_GI2u&dC%#vFO1-k8c!IsUBeH1Elk4>>rCjM9XZa5 z>1R7LgEe;8_o!SdmYS3dDk;m9O&P{xhN4K+@T1}fOTV0WXwk0elMR(LdJFFkimWKF zJD8jFu5kDsF`{_3xI@hc4E+Z&_(`i3`QWU$oonB*trojG5VI$diA77M-lt>$gSoD2 z5bu&~T$|`D2U}x0)@jZjT*!Y~ZI^DCmBHYr7EC)n7n zz+s!F?a-keE4R39M4F%^Wn#a6NueOVq~*i0pJTt5{2;C}luKHnsx++YEiF_l?Ut@l z7btDE;f7n26{^X(#N{Qv;TIs6rD#$9!g)fQ%{gQmrEGoKxW}(E9J0~PjOTKP)$Vz{ z&SQL(c*J}~ZNTrW`vs1s3uM7FS6%Y8q21lgsMfI#VivP7Vj+vZ7<=y4kTFIVl3QGo z)Pi*_5+P`GHs@Gq1jA)@!}Ue|K5Mw6W#cfOoYH=-1k|d59pjKilntLo&P0#SFdt2v z8IPTbV-G#hS9y*7Ly=hxvceM`ktgXi>?OouJUW$-2*|-Hm$V@Ko$})@jZjT*!Y~ZI^DCmBHYr7EC)n7n zz+s!F?a-keE4R39M4F%^Wn#a6NueOVq~*i0pJTt5{2;C}luKHnsx++YEiF_l?Ut@l z7btDE;f7n26{^X(#N{Qv;TIs6rD#$9!g)fQ%{gQmrEGoKxW}(E9J0~PjOTKP)$Vz{ z&SQL(c*J}~ZNTrW`vs1s3uM7FS6%Y8q21lgsMfI#VivP7Vj+vZ7<=y4kTFIVl3QGo z)Pi*_5+P`GHs@Gq1jA)@!}Ue|K5Mw6W#cfOoYH=-1k|d59pjKilntLo&P0#SFdt2v z8IPTbV-G#hS9y*7Ly=hxvceM`ktgXi>?OouJUW$-2*|-Hm$V@Ko$} Date: Tue, 7 Jan 2025 17:49:57 -0500 Subject: [PATCH 42/53] use set comprehension in get_patch_dates --- nssp/delphi_nssp/patch.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 84a4711dd..e4b502813 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -102,20 +102,21 @@ def get_patch_dates(start_issue, end_issue, source_dir): Due to weekly cadence of nssp data, dates to run patch on are not necessarily the same as issue dates. We use the latest date with source data per epiweek as reporting date for patching of that week's data. - Note that primary source files are available for all dates where secondary source files are available but not vice versa. + Note that primary source files are available for all dates where + secondary source files are available but not vice versa. start_issue: datetime object end_issue: datetime object """ patch_dates = [] date_range = pd.date_range(start=start_issue, end=end_issue) - dates_with_source_data = [ + dates_with_source_data = { date for date in date_range if path.isfile(f"""{source_dir}/{date.strftime("%Y%m%d")}.csv.gz""") or path.isfile(f"""{source_dir}/{date.strftime("%Y%m%d")}_secondary.csv.gz""") - ] - epiweek_start_dates = sorted(list(set([Week.fromdate(date).startdate() for date in date_range]))) + } + epiweek_start_dates = set([Week.fromdate(date).startdate() for date in date_range]) for epiweek_start_date in epiweek_start_dates: epiweek = Week.fromdate(epiweek_start_date) dates_with_data_in_epiweek = [date for date in dates_with_source_data if date.date() in epiweek.iterdates()] From 1f5a4dc9b471e12d5ce5a97895dde576e7a9c55e Mon Sep 17 00:00:00 2001 From: minhkhul Date: Tue, 7 Jan 2025 19:14:50 -0500 Subject: [PATCH 43/53] lint --- nssp/delphi_nssp/patch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index e4b502813..0a0fc89f7 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -116,7 +116,7 @@ def get_patch_dates(start_issue, end_issue, source_dir): if path.isfile(f"""{source_dir}/{date.strftime("%Y%m%d")}.csv.gz""") or path.isfile(f"""{source_dir}/{date.strftime("%Y%m%d")}_secondary.csv.gz""") } - epiweek_start_dates = set([Week.fromdate(date).startdate() for date in date_range]) + epiweek_start_dates = {Week.fromdate(date).startdate() for date in date_range} for epiweek_start_date in epiweek_start_dates: epiweek = Week.fromdate(epiweek_start_date) dates_with_data_in_epiweek = [date for date in dates_with_source_data if date.date() in epiweek.iterdates()] From 32f550ebf7a242c63a2923c3f67191ed7b1626d3 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Tue, 7 Jan 2025 21:38:33 -0500 Subject: [PATCH 44/53] make user param optional when no source data download needed --- nssp/delphi_nssp/patch.py | 11 ++++++---- nssp/delphi_nssp/pull.py | 2 +- nssp/delphi_nssp/run.py | 3 +-- nssp/tests/test_patch.py | 44 +++++++++++++++++++++++++++++++++------ 4 files changed, 47 insertions(+), 13 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 0a0fc89f7..7e8a1eac2 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -72,7 +72,12 @@ def good_patch_config(params, logger): logger.error("Custom flag is on, but patch section is missing.") valid_config = False else: - required_patch_keys = ["start_issue", "end_issue", "patch_dir", "source_dir", "user"] + required_patch_keys = ["start_issue", "end_issue", "patch_dir", "source_dir"] + + source_dir = params["patch"]["source_dir"] + if not path.isdir(source_dir) or not listdir(source_dir): + required_patch_keys.append("user") + missing_keys = [key for key in required_patch_keys if key not in patch_config] if missing_keys: logger.error("Patch section is missing required key(s)", missing_keys=missing_keys) @@ -129,9 +134,7 @@ def get_patch_dates(start_issue, end_issue, source_dir): def patch(): - """ - Run the nssp indicator for a range of issue dates. - """ + """ Run nssp indicator for a range of issue dates.""" params = read_params() logger = get_structured_logger("delphi_nssp.patch", filename=params["common"]["log_filename"]) if not good_patch_config(params, logger): diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index e45cfda64..225c4c606 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -37,6 +37,7 @@ def print_callback(remote_file_name, logger, bytes_so_far, bytes_total, progress def get_source_data(params, logger): """ Download historical source data from a backup server. + This function is typically used in patching only. Normal runs grab latest data from SODA API. This function uses "user" configuration under "patch" section in params.json to specify @@ -122,7 +123,6 @@ def pull_with_socrata_api(socrata_token: str, dataset_id: str): ------- list of dictionaries, each representing a row in the dataset """ - client = Socrata("data.cdc.gov", socrata_token) results = [] offset = 0 diff --git a/nssp/delphi_nssp/run.py b/nssp/delphi_nssp/run.py index 0c3ec3baf..d48e668dd 100644 --- a/nssp/delphi_nssp/run.py +++ b/nssp/delphi_nssp/run.py @@ -100,8 +100,7 @@ def run_module(params, logger=None): ## aggregate geo_mapper = GeoMapper() for signal in SIGNALS: - if df_pull is None and custom_run and \ - logger.name == "delphi_nssp.patch": + if df_pull is None and custom_run and logger.name == "delphi_nssp.patch": logger.warning("No primary source data pulled", issue_date=issue_date) break for geo in GEOS: diff --git a/nssp/tests/test_patch.py b/nssp/tests/test_patch.py index c1f0adf67..900030e5f 100644 --- a/nssp/tests/test_patch.py +++ b/nssp/tests/test_patch.py @@ -27,11 +27,10 @@ def test_config_missing_end_issue_in_patch_section(self, mock_logger): "custom_run": True, }, "patch": { - "source_dir": "./source_data", + "source_dir": "./does_not_exist", "user": "user", "patch_dir": "dir", "start_issue": "2024-04-21", - "source_dir": "source_dir" } } assert not good_patch_config(patch_config, mock_logger) @@ -47,12 +46,11 @@ def test_config_invalid_start_issue(self, mock_logger): "custom_run": True, }, "patch": { - "source_dir": "./source_data", + "source_dir": "./does_not_exist", "user": "user", "patch_dir": "dir", "start_issue": "01-01-2024", "end_issue": "2024-04-22", - "source_dir": "source_dir" } } assert not good_patch_config(patch_config, mock_logger) @@ -72,7 +70,7 @@ def test_config_start_issue_after_end_issue(self, mock_logger): "patch_dir": "dir", "start_issue": "2024-04-22", "end_issue": "2024-04-21", - "source_dir": "source_dir" + "source_dir": "./does_not_exist", } } assert not good_patch_config(patch_config, mock_logger) @@ -90,12 +88,46 @@ def test_config_all_valid_configurations(self, mock_logger): "patch_dir": "dir", "start_issue": "2024-04-21", "end_issue": "2024-04-22", - "source_dir": "source_dir" + "source_dir": "./does_not_exist" } } assert good_patch_config(patch_config, mock_logger) mock_logger.info.assert_called_once_with("Good patch configuration.") + @mock_patch('logging.Logger') + def test_config_user_param(self, mock_logger): + # Case 6.1: pre-existing local source data, + # so no "user" param in patch section needed + patch_config = { + "common": { + "custom_run": True, + }, + "patch": { + "patch_dir": "dir", + "start_issue": "2024-04-21", + "end_issue": "2024-04-22", + "source_dir": "./source_dir" + } + } + assert good_patch_config(patch_config, mock_logger) + + # Case 6.2: source_dir does not exist, so "user" param is needed + patch_config = { + "common": { + "custom_run": True, + }, + "patch": { + "patch_dir": "dir", + "start_issue": "2024-04-21", + "end_issue": "2024-04-22", + "source_dir": "./does_not_exist", + } + } + assert not good_patch_config(patch_config, mock_logger) + mock_logger.error.assert_has_calls([ + call("Patch section is missing required key(s)", missing_keys=["user"]), + ]) + def test_get_patch_dates(self): start_issue = datetime(2021, 1, 1) end_issue = datetime(2021, 1, 16) From 2214f87cae6ed8abe7c8d1b0f27a06942fa2da6f Mon Sep 17 00:00:00 2001 From: minhkhul Date: Wed, 8 Jan 2025 11:52:25 -0500 Subject: [PATCH 45/53] linter --- nssp/delphi_nssp/patch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 7e8a1eac2..3417eb661 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -134,7 +134,7 @@ def get_patch_dates(start_issue, end_issue, source_dir): def patch(): - """ Run nssp indicator for a range of issue dates.""" + """Run nssp indicator for a range of issue dates.""" params = read_params() logger = get_structured_logger("delphi_nssp.patch", filename=params["common"]["log_filename"]) if not good_patch_config(params, logger): From 633399bb347bc50182a1f750c00045aa5b066f21 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Thu, 6 Feb 2025 11:56:58 -0500 Subject: [PATCH 46/53] lint --- nssp/delphi_nssp/pull.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index 07ed5d1f2..a26f5b3a8 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -13,12 +13,7 @@ from delphi_utils import create_backup_csv from sodapy import Socrata -from .constants import ( - NEWLINE, - SIGNALS, - SIGNALS_MAP, - TYPE_DICT, -) +from .constants import NEWLINE, SIGNALS, SIGNALS_MAP, TYPE_DICT def print_callback(remote_file_name, logger, bytes_so_far, bytes_total, progress_chunks): From 83e5a8c43c3457d86cbfd2b73a4830cdd51280dc Mon Sep 17 00:00:00 2001 From: minhkhul Date: Thu, 6 Feb 2025 12:56:36 -0500 Subject: [PATCH 47/53] adjust readme --- nssp/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nssp/README.md b/nssp/README.md index ddff82c45..9ab86452f 100644 --- a/nssp/README.md +++ b/nssp/README.md @@ -78,8 +78,8 @@ None of the linting or unit tests should fail, and the code lines that are not c should not include critical sub-routines. ## Running Patches: -A daily backup of source in the form of csv files can be found on `bigchunk-dev-02.delphi.cmu.edu` under `/common/source_backup/nssp`. This data is needed to create patches. Talk to your sysadmin for access. -When your credentials to the server are working, to create patching data for a specific date range in batch issue format, adjust `params.json` in accordance with instructions in `patch.py`, then run +A daily backup of source in the form of csv files can be found on prod under `/common/covidcast/source_backup/nssp/`. This data is needed to create patches. Talk to your sysadmin for access. +When your credentials are working, to create patching data for a specific date range in batch issue format, adjust `params.json` in accordance with instructions in `patch.py`, then run ``` env/bin/python -m delphi_nssp.patch ``` \ No newline at end of file From 552d03645aef00e53a7fa621bef78c7e17bd0cd2 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Thu, 6 Feb 2025 14:34:06 -0500 Subject: [PATCH 48/53] add test for pull source data + remove misc secondary trace --- nssp/delphi_nssp/patch.py | 4 ---- nssp/delphi_nssp/pull.py | 4 +--- nssp/tests/test_pull.py | 30 ++++++++++++++++++++++++++++++ 3 files changed, 31 insertions(+), 7 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 3417eb661..2af8f3fa8 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -107,9 +107,6 @@ def get_patch_dates(start_issue, end_issue, source_dir): Due to weekly cadence of nssp data, dates to run patch on are not necessarily the same as issue dates. We use the latest date with source data per epiweek as reporting date for patching of that week's data. - Note that primary source files are available for all dates where - secondary source files are available but not vice versa. - start_issue: datetime object end_issue: datetime object """ @@ -119,7 +116,6 @@ def get_patch_dates(start_issue, end_issue, source_dir): date for date in date_range if path.isfile(f"""{source_dir}/{date.strftime("%Y%m%d")}.csv.gz""") - or path.isfile(f"""{source_dir}/{date.strftime("%Y%m%d")}_secondary.csv.gz""") } epiweek_start_dates = {Week.fromdate(date).startdate() for date in date_range} for epiweek_start_date in epiweek_start_dates: diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index a26f5b3a8..72dfc6345 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -48,9 +48,7 @@ def get_source_data(params, logger): # Generate file names of source files to download dates = pd.date_range(start=params["patch"]["start_issue"], end=params["patch"]["end_issue"]) - primary_source_files = [f"{date.strftime('%Y%m%d')}.csv.gz" for date in dates] - secondary_source_files = [f"{date.strftime('%Y%m%d')}_secondary.csv.gz" for date in dates] - remote_source_files = primary_source_files + secondary_source_files + remote_source_files = [f"{date.strftime('%Y%m%d')}.csv.gz" for date in dates] # Download source files sftp = ssh.open_sftp() diff --git a/nssp/tests/test_pull.py b/nssp/tests/test_pull.py index 94c47ef54..801158d4d 100644 --- a/nssp/tests/test_pull.py +++ b/nssp/tests/test_pull.py @@ -24,6 +24,36 @@ from delphi_utils import get_structured_logger class TestPullNSSPData: + def test_get_source_data(self): + # Define test parameters + params = { + "patch": { + "source_dir": "test_source_dir", + "user": "test_user", + "start_issue": "2023-01-01", + "end_issue": "2023-01-03", + }, + "common": { + "backup_dir": "/test_backup_dir", + } + } + + logger = get_structured_logger() + + # Create a mock SSH client + mock_ssh = MagicMock() + mock_sftp = MagicMock() + mock_sftp.stat = MagicMock() + mock_ssh.open_sftp.return_value = mock_sftp + + # Mock the paramiko SSHClient + with patch("paramiko.SSHClient", return_value=mock_ssh): + get_source_data(params, logger) + + mock_ssh.connect.assert_called_once_with("delphi-master-prod-01.delphi.cmu.edu", username="test_user") + mock_sftp.chdir.assert_called_once_with("/test_backup_dir") + assert mock_sftp.get.call_count == 3 + @patch("delphi_nssp.pull.Socrata") def test_pull_nssp_data(self, mock_socrata, caplog): today = pd.Timestamp.today().strftime("%Y%m%d") From c4dd3b29262dfe0b36abe477b8a42bb1207c0c7b Mon Sep 17 00:00:00 2001 From: nmdefries <42820733+nmdefries@users.noreply.github.com> Date: Thu, 6 Feb 2025 18:14:14 -0500 Subject: [PATCH 49/53] darker linting --- nssp/delphi_nssp/patch.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 2af8f3fa8..71dfce797 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -113,9 +113,7 @@ def get_patch_dates(start_issue, end_issue, source_dir): patch_dates = [] date_range = pd.date_range(start=start_issue, end=end_issue) dates_with_source_data = { - date - for date in date_range - if path.isfile(f"""{source_dir}/{date.strftime("%Y%m%d")}.csv.gz""") + date for date in date_range if path.isfile(f"""{source_dir}/{date.strftime("%Y%m%d")}.csv.gz""") } epiweek_start_dates = {Week.fromdate(date).startdate() for date in date_range} for epiweek_start_date in epiweek_start_dates: From a4c4aecf9ea6474f261f639b416e861ccda15ae4 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Thu, 6 Feb 2025 20:44:39 -0500 Subject: [PATCH 50/53] add tests for remote source download vs local --- nssp/tests/test_patch.py | 52 ++++++++++++++++++++++++++++++++++++++-- nssp/tests/test_pull.py | 4 +--- 2 files changed, 51 insertions(+), 5 deletions(-) diff --git a/nssp/tests/test_patch.py b/nssp/tests/test_patch.py index 900030e5f..b0e2c74cc 100644 --- a/nssp/tests/test_patch.py +++ b/nssp/tests/test_patch.py @@ -142,11 +142,59 @@ def test_get_patch_dates(self): for date in expected_dates: assert date in patch_dates + @mock_patch('delphi_nssp.patch.get_source_data') + @mock_patch('delphi_nssp.patch.run_module') + @mock_patch('delphi_nssp.patch.get_structured_logger') + @mock_patch('delphi_nssp.patch.read_params') + def test_patch_from_local_source(self, mock_read_params, mock_get_structured_logger, mock_run_module, mock_get_source_data): + mock_read_params.return_value = { + "common": { + "log_filename": "test.log", + "custom_run": True + }, + "patch": { + "user": "user", + "start_issue": "2021-01-01", + "end_issue": "2021-01-16", + "patch_dir": "./patch_dir", + "source_dir": "./source_dir" + } + } + patch() + + mock_get_source_data.assert_not_called() + + @mock_patch('delphi_nssp.patch.get_source_data') + @mock_patch('delphi_nssp.patch.rmtree') + @mock_patch('delphi_nssp.patch.run_module') + @mock_patch('delphi_nssp.patch.get_structured_logger') + @mock_patch('delphi_nssp.patch.read_params') + def test_patch_download_remote_source(self, mock_read_params, mock_get_structured_logger, mock_run_module, mock_rmtree, mock_get_source_data): + mock_read_params.return_value = { + "common": { + "log_filename": "test.log", + "custom_run": True + }, + "patch": { + "user": "user", + "start_issue": "2021-01-01", + "end_issue": "2021-01-16", + "patch_dir": "./patch_dir", + "source_dir": "./does_not_exist" + } + } + patch() + mock_get_source_data.assert_called_once() + assert mock_rmtree.call_count == 1 + shutil.rmtree(mock_read_params.return_value["patch"]["patch_dir"]) + + + @mock_patch('delphi_nssp.patch.get_source_data') @mock_patch('delphi_nssp.patch.run_module') @mock_patch('delphi_nssp.patch.get_structured_logger') @mock_patch('delphi_nssp.patch.read_params') - def test_patch_confirm_dir_structure_created(self, mock_read_params, mock_get_structured_logger, mock_run_module): + def test_patch_confirm_dir_structure_created(self, mock_read_params, mock_get_structured_logger, mock_run_module, mock_get_source_data): mock_read_params.return_value = { "common": { "log_filename": "test.log", @@ -180,7 +228,7 @@ def test_patch_confirm_dir_structure_created(self, mock_read_params, mock_get_st @mock_patch('delphi_nssp.patch.get_structured_logger') @mock_patch('delphi_nssp.patch.read_params') - def test_patch_confirm_values_generated(self, mock_read_params, mock_get_structured_logger): + def test_full_patch_code(self, mock_read_params, mock_get_structured_logger): mock_get_structured_logger.return_value.name = "delphi_nssp.patch" mock_read_params.return_value = { "common": { diff --git a/nssp/tests/test_pull.py b/nssp/tests/test_pull.py index 801158d4d..2585385ad 100644 --- a/nssp/tests/test_pull.py +++ b/nssp/tests/test_pull.py @@ -45,8 +45,6 @@ def test_get_source_data(self): mock_sftp = MagicMock() mock_sftp.stat = MagicMock() mock_ssh.open_sftp.return_value = mock_sftp - - # Mock the paramiko SSHClient with patch("paramiko.SSHClient", return_value=mock_ssh): get_source_data(params, logger) @@ -55,7 +53,7 @@ def test_get_source_data(self): assert mock_sftp.get.call_count == 3 @patch("delphi_nssp.pull.Socrata") - def test_pull_nssp_data(self, mock_socrata, caplog): + def test_normal_pull_nssp_data(self, mock_socrata, caplog): today = pd.Timestamp.today().strftime("%Y%m%d") backup_dir = 'test_raw_data_backups' From 5f383a6cac4aa3ff40c649ffff89db0afabf5c6a Mon Sep 17 00:00:00 2001 From: minhkhul Date: Thu, 6 Feb 2025 21:38:27 -0500 Subject: [PATCH 51/53] change source host to params + add if logger before use in create_backup_csv --- _delphi_utils_python/delphi_utils/export.py | 3 +- nssp/delphi_nssp/patch.py | 4 +- nssp/delphi_nssp/pull.py | 43 ++++++++++----------- nssp/tests/test_patch.py | 19 ++++++--- nssp/tests/test_pull.py | 2 +- 5 files changed, 41 insertions(+), 30 deletions(-) diff --git a/_delphi_utils_python/delphi_utils/export.py b/_delphi_utils_python/delphi_utils/export.py index 82a460abe..db35ea381 100644 --- a/_delphi_utils_python/delphi_utils/export.py +++ b/_delphi_utils_python/delphi_utils/export.py @@ -205,4 +205,5 @@ def create_backup_csv( ) # pylint: disable=W0703 except Exception as e: - logger.info("Backup file creation failed", msg=e) + if logger: + logger.info("Backup file creation failed", msg=e) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 71dfce797..2973f9ae1 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -15,6 +15,7 @@ ... }, "patch": { + "source_host": "prod.server.edu", "source_dir": "delphi/covidcast-indicators/nssp/source_data", "user": "username", "patch_dir": "delphi/covidcast-indicators/nssp/AprilPatch", @@ -26,6 +27,7 @@ In this params.json, we - Turn on the "custom_run" flag under "common" - Add "patch" section, which contains: + + "source_host": the prod server where source data is backed up + "source_dir": the local directory where source data is downloaded to + "user": the username to log in to the remote server where source data is backed up + "patch_dir": the local directory where to write all patch issues output @@ -72,7 +74,7 @@ def good_patch_config(params, logger): logger.error("Custom flag is on, but patch section is missing.") valid_config = False else: - required_patch_keys = ["start_issue", "end_issue", "patch_dir", "source_dir"] + required_patch_keys = ["start_issue", "end_issue", "patch_dir", "source_dir", "source_host"] source_dir = params["patch"]["source_dir"] if not path.isdir(source_dir) or not listdir(source_dir): diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index 72dfc6345..737ce0b67 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -42,7 +42,7 @@ def get_source_data(params, logger): makedirs(params["patch"]["source_dir"], exist_ok=True) ssh = paramiko.SSHClient() ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) - host = "delphi-master-prod-01.delphi.cmu.edu" + host = params["patch"]["source_host"] user = params["patch"]["user"] ssh.connect(host, username=user) @@ -51,29 +51,28 @@ def get_source_data(params, logger): remote_source_files = [f"{date.strftime('%Y%m%d')}.csv.gz" for date in dates] # Download source files - sftp = ssh.open_sftp() - try: - sftp.stat(params["common"]["backup_dir"]) - except IOError: - logger.error("Source backup directory does not exist on the remote server.") - - sftp.chdir(params["common"]["backup_dir"]) - - num_files_transferred = 0 - for remote_file_name in remote_source_files: - callback_for_filename = functools.partial(print_callback, remote_file_name, logger, progress_chunks=[0, 50]) - local_file_path = path.join(params["patch"]["source_dir"], remote_file_name) + with ssh.open_sftp() as sftp: try: - sftp.stat(remote_file_name) + sftp.stat(params["common"]["backup_dir"]) except IOError: - logger.warning( - "Source backup for this date does not exist on the remote server.", missing_filename=remote_file_name - ) - continue - sftp.get(remote_file_name, local_file_path, callback=callback_for_filename) - logger.info("Transfer finished", remote_file_name=remote_file_name, local_file_path=local_file_path) - num_files_transferred += 1 - ssh.close() + logger.error("Source backup directory does not exist on the remote server.") + + sftp.chdir(params["common"]["backup_dir"]) + + num_files_transferred = 0 + for remote_file_name in remote_source_files: + callback_for_filename = functools.partial(print_callback, remote_file_name, logger, progress_chunks=[0, 50]) + local_file_path = path.join(params["patch"]["source_dir"], remote_file_name) + try: + sftp.stat(remote_file_name) + except IOError: + logger.warning( + "Source backup for this date does not exist on the remote server.", missing_filename=remote_file_name + ) + continue + sftp.get(remote_file_name, local_file_path, callback=callback_for_filename) + logger.info("Transfer finished", remote_file_name=remote_file_name, local_file_path=local_file_path) + num_files_transferred += 1 if num_files_transferred == 0: logger.error("No source data was transferred. Check the source backup server for potential issues.") diff --git a/nssp/tests/test_patch.py b/nssp/tests/test_patch.py index b0e2c74cc..9768becb3 100644 --- a/nssp/tests/test_patch.py +++ b/nssp/tests/test_patch.py @@ -28,6 +28,7 @@ def test_config_missing_end_issue_in_patch_section(self, mock_logger): }, "patch": { "source_dir": "./does_not_exist", + "source_host": "prod.server.edu", "user": "user", "patch_dir": "dir", "start_issue": "2024-04-21", @@ -47,6 +48,7 @@ def test_config_invalid_start_issue(self, mock_logger): }, "patch": { "source_dir": "./does_not_exist", + "source_host": "prod.server.edu", "user": "user", "patch_dir": "dir", "start_issue": "01-01-2024", @@ -71,6 +73,7 @@ def test_config_start_issue_after_end_issue(self, mock_logger): "start_issue": "2024-04-22", "end_issue": "2024-04-21", "source_dir": "./does_not_exist", + "source_host": "prod.server.edu" } } assert not good_patch_config(patch_config, mock_logger) @@ -88,7 +91,8 @@ def test_config_all_valid_configurations(self, mock_logger): "patch_dir": "dir", "start_issue": "2024-04-21", "end_issue": "2024-04-22", - "source_dir": "./does_not_exist" + "source_dir": "./does_not_exist", + "source_host": "prod.server.edu" } } assert good_patch_config(patch_config, mock_logger) @@ -106,7 +110,8 @@ def test_config_user_param(self, mock_logger): "patch_dir": "dir", "start_issue": "2024-04-21", "end_issue": "2024-04-22", - "source_dir": "./source_dir" + "source_dir": "./source_dir", + "source_host": "prod.server.edu" } } assert good_patch_config(patch_config, mock_logger) @@ -157,7 +162,8 @@ def test_patch_from_local_source(self, mock_read_params, mock_get_structured_log "start_issue": "2021-01-01", "end_issue": "2021-01-16", "patch_dir": "./patch_dir", - "source_dir": "./source_dir" + "source_dir": "./source_dir", + "source_host": "prod.server.edu" } } patch() @@ -180,6 +186,7 @@ def test_patch_download_remote_source(self, mock_read_params, mock_get_structure "start_issue": "2021-01-01", "end_issue": "2021-01-16", "patch_dir": "./patch_dir", + "source_host": "prod.server.edu", "source_dir": "./does_not_exist" } } @@ -205,7 +212,8 @@ def test_patch_confirm_dir_structure_created(self, mock_read_params, mock_get_st "start_issue": "2021-01-01", "end_issue": "2021-01-16", "patch_dir": "./patch_dir", - "source_dir": "./source_dir" + "source_dir": "./source_dir", + "source_host": "prod.server.edu", } } patch() @@ -243,7 +251,8 @@ def test_full_patch_code(self, mock_read_params, mock_get_structured_logger): "start_issue": "2021-01-01", "end_issue": "2021-01-16", "patch_dir": "./patch_dir", - "source_dir": "./source_dir" + "source_dir": "./source_dir", + "source_host": "prod.server.edu" } } diff --git a/nssp/tests/test_pull.py b/nssp/tests/test_pull.py index 2585385ad..e4368e7ca 100644 --- a/nssp/tests/test_pull.py +++ b/nssp/tests/test_pull.py @@ -29,6 +29,7 @@ def test_get_source_data(self): params = { "patch": { "source_dir": "test_source_dir", + "source_host": "prod.server.edu", "user": "test_user", "start_issue": "2023-01-01", "end_issue": "2023-01-03", @@ -48,7 +49,6 @@ def test_get_source_data(self): with patch("paramiko.SSHClient", return_value=mock_ssh): get_source_data(params, logger) - mock_ssh.connect.assert_called_once_with("delphi-master-prod-01.delphi.cmu.edu", username="test_user") mock_sftp.chdir.assert_called_once_with("/test_backup_dir") assert mock_sftp.get.call_count == 3 From d70d6e1c5744f1e8769c7ca5844007f82f376aae Mon Sep 17 00:00:00 2001 From: minhkhul Date: Fri, 7 Feb 2025 09:20:34 -0500 Subject: [PATCH 52/53] lint --- nssp/delphi_nssp/pull.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index 737ce0b67..88a00f0be 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -67,7 +67,8 @@ def get_source_data(params, logger): sftp.stat(remote_file_name) except IOError: logger.warning( - "Source backup for this date does not exist on the remote server.", missing_filename=remote_file_name + "Source backup for this date does not exist on the remote server.", + missing_filename=remote_file_name, ) continue sftp.get(remote_file_name, local_file_path, callback=callback_for_filename) From 2a67c27a23a9c22ed863db771ba8acc9d902b907 Mon Sep 17 00:00:00 2001 From: minhkhul Date: Fri, 7 Feb 2025 14:10:03 -0500 Subject: [PATCH 53/53] fix test --- nssp/delphi_nssp/patch.py | 3 ++- nssp/delphi_nssp/pull.py | 43 ++++++++++++++++++++------------------- nssp/tests/test_patch.py | 9 ++++---- 3 files changed, 28 insertions(+), 27 deletions(-) diff --git a/nssp/delphi_nssp/patch.py b/nssp/delphi_nssp/patch.py index 2973f9ae1..4696ffb6b 100644 --- a/nssp/delphi_nssp/patch.py +++ b/nssp/delphi_nssp/patch.py @@ -74,11 +74,12 @@ def good_patch_config(params, logger): logger.error("Custom flag is on, but patch section is missing.") valid_config = False else: - required_patch_keys = ["start_issue", "end_issue", "patch_dir", "source_dir", "source_host"] + required_patch_keys = ["start_issue", "end_issue", "patch_dir", "source_dir"] source_dir = params["patch"]["source_dir"] if not path.isdir(source_dir) or not listdir(source_dir): required_patch_keys.append("user") + required_patch_keys.append("source_host") missing_keys = [key for key in required_patch_keys if key not in patch_config] if missing_keys: diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index 88a00f0be..d753338ae 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -51,29 +51,30 @@ def get_source_data(params, logger): remote_source_files = [f"{date.strftime('%Y%m%d')}.csv.gz" for date in dates] # Download source files - with ssh.open_sftp() as sftp: + sftp = ssh.open_sftp() + try: + sftp.stat(params["common"]["backup_dir"]) + except IOError: + logger.error("Source backup directory does not exist on the remote server.") + + sftp.chdir(params["common"]["backup_dir"]) + + num_files_transferred = 0 + for remote_file_name in remote_source_files: + callback_for_filename = functools.partial(print_callback, remote_file_name, logger, progress_chunks=[0, 50]) + local_file_path = path.join(params["patch"]["source_dir"], remote_file_name) try: - sftp.stat(params["common"]["backup_dir"]) + sftp.stat(remote_file_name) except IOError: - logger.error("Source backup directory does not exist on the remote server.") - - sftp.chdir(params["common"]["backup_dir"]) - - num_files_transferred = 0 - for remote_file_name in remote_source_files: - callback_for_filename = functools.partial(print_callback, remote_file_name, logger, progress_chunks=[0, 50]) - local_file_path = path.join(params["patch"]["source_dir"], remote_file_name) - try: - sftp.stat(remote_file_name) - except IOError: - logger.warning( - "Source backup for this date does not exist on the remote server.", - missing_filename=remote_file_name, - ) - continue - sftp.get(remote_file_name, local_file_path, callback=callback_for_filename) - logger.info("Transfer finished", remote_file_name=remote_file_name, local_file_path=local_file_path) - num_files_transferred += 1 + logger.warning( + "Source backup for this date does not exist on the remote server.", + missing_filename=remote_file_name, + ) + continue + sftp.get(remote_file_name, local_file_path, callback=callback_for_filename) + logger.info("Transfer finished", remote_file_name=remote_file_name, local_file_path=local_file_path) + num_files_transferred += 1 + ssh.close() if num_files_transferred == 0: logger.error("No source data was transferred. Check the source backup server for potential issues.") diff --git a/nssp/tests/test_patch.py b/nssp/tests/test_patch.py index 9768becb3..fb40e8d2b 100644 --- a/nssp/tests/test_patch.py +++ b/nssp/tests/test_patch.py @@ -99,7 +99,7 @@ def test_config_all_valid_configurations(self, mock_logger): mock_logger.info.assert_called_once_with("Good patch configuration.") @mock_patch('logging.Logger') - def test_config_user_param(self, mock_logger): + def test_config_user_and_host_param(self, mock_logger): # Case 6.1: pre-existing local source data, # so no "user" param in patch section needed patch_config = { @@ -110,13 +110,12 @@ def test_config_user_param(self, mock_logger): "patch_dir": "dir", "start_issue": "2024-04-21", "end_issue": "2024-04-22", - "source_dir": "./source_dir", - "source_host": "prod.server.edu" + "source_dir": "./source_dir" } } assert good_patch_config(patch_config, mock_logger) - # Case 6.2: source_dir does not exist, so "user" param is needed + # Case 6.2: source_dir does not exist, so "user" and "source_host" param is needed patch_config = { "common": { "custom_run": True, @@ -130,7 +129,7 @@ def test_config_user_param(self, mock_logger): } assert not good_patch_config(patch_config, mock_logger) mock_logger.error.assert_has_calls([ - call("Patch section is missing required key(s)", missing_keys=["user"]), + call("Patch section is missing required key(s)", missing_keys=["user", "source_host"]), ]) def test_get_patch_dates(self):