From c1e9d56c6b7c01c84887c95bea404214bc74099a Mon Sep 17 00:00:00 2001 From: Amaris Sim Date: Fri, 28 Feb 2025 12:23:51 -0500 Subject: [PATCH 01/14] first implimentation --- nssp/delphi_nssp/run.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/nssp/delphi_nssp/run.py b/nssp/delphi_nssp/run.py index 5ac2380a5..960c8abff 100644 --- a/nssp/delphi_nssp/run.py +++ b/nssp/delphi_nssp/run.py @@ -118,9 +118,10 @@ def run_module(params, logger=None): ) elif geo == "hrr": df = df[["fips", "val", "timestamp"]] - # fips -> hrr has a weighted version - df = geo_mapper.replace_geocode(df, "fips", "hrr") - df = df.rename(columns={"hrr": "geo_id"}) + df = geo_mapper.add_population_column(df, geocode_type="fips", geocode_col="fips") + df = geo_mapper.add_geocode(df, "fips", "hrr", from_col="fips", new_col="geo_id") + df = geo_mapper.aggregate_by_weighted_sum(df, "geo_id", "val", "timestamp", "weight") + df = df.rename(columns={"weighted_val": "val"}) elif geo == "msa": df = df[["fips", "val", "timestamp"]] # fips -> msa doesn't have a weighted version, so we need to add columns and sum ourselves @@ -139,6 +140,11 @@ def run_module(params, logger=None): else: df = df[df["county"] != "All"] df["geo_id"] = df["fips"] + + not_null_mask = df['val'].notnull() + sanity_check = (df.loc[not_null_mask, "val"] <= 100).all() and (df.loc[not_null_mask, "val"] >= 0).all() + assert sanity_check + # 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)) From 4ac06a00ce39c33ea0f1dcba7a4a95643dbffd30 Mon Sep 17 00:00:00 2001 From: Amaris Sim Date: Mon, 3 Mar 2025 15:38:26 -0500 Subject: [PATCH 02/14] tests and clean up --- nssp/delphi_nssp/constants.py | 1 + nssp/delphi_nssp/pull.py | 4 +- nssp/delphi_nssp/run.py | 8 +- nssp/raw_data_backups/.gitignore | 120 ----------- nssp/tests/conftest.py | 90 +++++++++ nssp/tests/page_secondary_1.txt | 1 - nssp/tests/receiving/.gitignore | 0 nssp/tests/test_data/{page.txt => page.json} | 0 nssp/tests/test_data/page_100_hrr.json | 200 +++++++++++++++++++ nssp/tests/test_data/secondary_page.txt | 73 ------- nssp/tests/test_pull.py | 40 +--- nssp/tests/test_run.py | 91 +++++++-- 12 files changed, 380 insertions(+), 248 deletions(-) delete mode 100644 nssp/raw_data_backups/.gitignore create mode 100644 nssp/tests/conftest.py delete mode 100644 nssp/tests/page_secondary_1.txt create mode 100644 nssp/tests/receiving/.gitignore rename nssp/tests/test_data/{page.txt => page.json} (100%) create mode 100644 nssp/tests/test_data/page_100_hrr.json delete mode 100644 nssp/tests/test_data/secondary_page.txt diff --git a/nssp/delphi_nssp/constants.py b/nssp/delphi_nssp/constants.py index 9b98d2012..c21bdec0e 100644 --- a/nssp/delphi_nssp/constants.py +++ b/nssp/delphi_nssp/constants.py @@ -1,4 +1,5 @@ """Registry for variations.""" +DATASET_ID = "rdmq-nq56" GEOS = [ "hrr", diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index d753338ae..c7c347ea2 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -13,7 +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, DATASET_ID def print_callback(remote_file_name, logger, bytes_so_far, bytes_total, progress_chunks): @@ -148,7 +148,7 @@ def pull_nssp_data( Dataframe as described above. """ if not custom_run: - socrata_results = pull_with_socrata_api(socrata_token, "rdmq-nq56") + socrata_results = pull_with_socrata_api(socrata_token, DATASET_ID) df_ervisits = pd.DataFrame.from_records(socrata_results) create_backup_csv(df_ervisits, backup_dir, custom_run, logger=logger) logger.info("Number of records grabbed", num_records=len(df_ervisits), source="Socrata API") diff --git a/nssp/delphi_nssp/run.py b/nssp/delphi_nssp/run.py index 960c8abff..57caf20c5 100644 --- a/nssp/delphi_nssp/run.py +++ b/nssp/delphi_nssp/run.py @@ -117,12 +117,14 @@ def run_module(params, logger=None): lambda x: us.states.lookup(x).abbr.lower() if us.states.lookup(x) else "dc" ) elif geo == "hrr": + df = df[df["county"] != "All"] df = df[["fips", "val", "timestamp"]] df = geo_mapper.add_population_column(df, geocode_type="fips", geocode_col="fips") df = geo_mapper.add_geocode(df, "fips", "hrr", from_col="fips", new_col="geo_id") - df = geo_mapper.aggregate_by_weighted_sum(df, "geo_id", "val", "timestamp", "weight") + df = geo_mapper.aggregate_by_weighted_sum(df, "geo_id", "val", "timestamp", "population") df = df.rename(columns={"weighted_val": "val"}) elif geo == "msa": + df = df[df["county"] != "All"] df = df[["fips", "val", "timestamp"]] # fips -> msa doesn't have a weighted version, so we need to add columns and sum ourselves df = geo_mapper.add_population_column(df, geocode_type="fips", geocode_col="fips") @@ -141,10 +143,6 @@ def run_module(params, logger=None): df = df[df["county"] != "All"] df["geo_id"] = df["fips"] - not_null_mask = df['val'].notnull() - sanity_check = (df.loc[not_null_mask, "val"] <= 100).all() and (df.loc[not_null_mask, "val"] >= 0).all() - assert sanity_check - # 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)) diff --git a/nssp/raw_data_backups/.gitignore b/nssp/raw_data_backups/.gitignore deleted file mode 100644 index 3c515981b..000000000 --- a/nssp/raw_data_backups/.gitignore +++ /dev/null @@ -1,120 +0,0 @@ -# You should hard commit a prototype for this file, but we -# want to avoid accidental adding of API tokens and other -# private data parameters -params.json - -# Do not commit output files -receiving/*.csv - -# Remove macOS files -.DS_Store - -# virtual environment -dview/ - -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class - -# C extensions -*.so - -# Distribution / packaging -coverage.xml -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -.hypothesis/ -.pytest_cache/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -.static_storage/ -.media/ -local_settings.py - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# pyenv -.python-version - -# celery beat schedule file -celerybeat-schedule - -# SageMath parsed files -*.sage.py - -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ \ No newline at end of file diff --git a/nssp/tests/conftest.py b/nssp/tests/conftest.py new file mode 100644 index 000000000..35490b6fd --- /dev/null +++ b/nssp/tests/conftest.py @@ -0,0 +1,90 @@ +import copy +import json +import time +from unittest.mock import patch, MagicMock + +import pytest +from pathlib import Path + +from delphi_nssp.run import run_module +from delphi_nssp.constants import DATASET_ID + +TEST_DIR = Path(__file__).parent + +# test data generated with following url with socrata: +# https://data.cdc.gov/resource/ua7e-t2fy.json?$where=weekendingdate%20between%20%272021-08-19T00:00:00.000%27%20and%20%272021-10-19T00:00:00.000%27%20and%20jurisdiction%20in(%27CO%27,%27USA%27) + + +with open(f"{TEST_DIR}/test_data/page.json", "r") as f: + TEST_DATA = json.load(f) + +with open(f"{TEST_DIR}/test_data/page_100_hrr.json", "r") as f: + HRR_TEST_DATA = json.load(f) + +@pytest.fixture(scope="session") +def params(): + params = { + "common": { + "export_dir": f"{TEST_DIR}/receiving", + "log_filename": f"{TEST_DIR}/test.log", + "backup_dir": f"{TEST_DIR}/test_raw_data_backups", + "custom_run": False + }, + "indicator": { + "wip_signal": True, + "export_start_date": "2020-08-01", + "static_file_dir": "./static", + "socrata_token": "test_token" + }, + "validation": { + "common": { + "span_length": 14, + "min_expected_lag": {"all": "3"}, + "max_expected_lag": {"all": "4"}, + } + } + } + return copy.deepcopy(params) + +@pytest.fixture +def params_w_patch(params): + params_copy = copy.deepcopy(params) + params_copy["common"]["custom_run"] = True + params_copy["patch"] = { + "patch_dir": f"{TEST_DIR}/patch_dir", + "source_dir": "test_source_dir", + "source_host": "prod.server.edu", + "user": "test_user", + "start_issue": "2023-01-01", + "end_issue": "2023-01-03", + } + + return params_copy + +@pytest.fixture(scope="function") +def run_as_module(params): + with patch('sodapy.Socrata.get') as mock_get: + def side_effect(*args, **kwargs): + if kwargs['offset'] == 0: + if DATASET_ID in args[0]: + return TEST_DATA + else: + return [] + mock_get.side_effect = side_effect + run_module(params) + + + +@pytest.fixture(scope="function") +def run_as_module_hrr(params): + with patch('sodapy.Socrata.get') as mock_get, \ + patch('delphi_nssp.run.GEOS', ["hrr"]): + def side_effect(*args, **kwargs): + if kwargs['offset'] == 0: + if DATASET_ID in args[0]: + return HRR_TEST_DATA + else: + return [] + mock_get.side_effect = side_effect + run_module(params) + diff --git a/nssp/tests/page_secondary_1.txt b/nssp/tests/page_secondary_1.txt deleted file mode 100644 index 2ae4dd231..000000000 --- a/nssp/tests/page_secondary_1.txt +++ /dev/null @@ -1 +0,0 @@ -[{"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/receiving/.gitignore b/nssp/tests/receiving/.gitignore new file mode 100644 index 000000000..e69de29bb diff --git a/nssp/tests/test_data/page.txt b/nssp/tests/test_data/page.json similarity index 100% rename from nssp/tests/test_data/page.txt rename to nssp/tests/test_data/page.json diff --git a/nssp/tests/test_data/page_100_hrr.json b/nssp/tests/test_data/page_100_hrr.json new file mode 100644 index 000000000..34ae27b35 --- /dev/null +++ b/nssp/tests/test_data/page_100_hrr.json @@ -0,0 +1,200 @@ +[ + { + "week_end": "2022-10-01T00:00:00.000", + "geography": "United States", + "county": "All", + "percent_visits_combined": "100", + "percent_visits_covid": "100", + "percent_visits_influenza": "100", + "percent_visits_rsv": "100", + "percent_visits_smoothed": "100", + "percent_visits_smoothed_covid": "100", + "percent_visits_smoothed_1": "100", + "percent_visits_smoothed_rsv": "100", + "ed_trends_covid": "Decreasing", + "ed_trends_influenza": "Increasing", + "ed_trends_rsv": "Increasing", + "hsa": "All", + "hsa_counties": "All", + "hsa_nci_id": "All", + "fips": "0", + "trend_source": "United States", + "buildnumber": "2025-02-28" + }, + { + "week_end": "2022-10-01T00:00:00.000", + "geography": "Colorado", + "county": "All", + "percent_visits_combined": "100", + "percent_visits_covid": "100", + "percent_visits_influenza": "100", + "percent_visits_rsv": "100", + "percent_visits_smoothed": "100", + "percent_visits_smoothed_covid": "100", + "percent_visits_smoothed_1": "100", + "percent_visits_smoothed_rsv": "100", + "ed_trends_covid": "Decreasing", + "ed_trends_influenza": "Increasing", + "ed_trends_rsv": "Increasing", + "hsa": "All", + "hsa_counties": "All", + "hsa_nci_id": "All", + "fips": "8000", + "trend_source": "State", + "buildnumber": "2025-02-28" + }, + { + "week_end": "2022-10-01T00:00:00.000", + "geography": "Colorado", + "county": "Broomfield", + "percent_visits_combined": "100", + "percent_visits_covid": "100", + "percent_visits_influenza": "100", + "percent_visits_rsv": "100", + "percent_visits_smoothed": "100", + "percent_visits_smoothed_covid": "100", + "percent_visits_smoothed_1": "100", + "percent_visits_smoothed_rsv": "100", + "ed_trends_covid": "No Change", + "ed_trends_influenza": "Increasing", + "ed_trends_rsv": "Increasing", + "hsa": "Boulder, CO - Broomfield, CO", + "hsa_counties": "Boulder, Broomfield", + "hsa_nci_id": "795", + "fips": "8014", + "trend_source": "HSA", + "buildnumber": "2025-02-28" + }, + { + "week_end": "2022-10-08T00:00:00.000", + "geography": "United States", + "county": "All", + "percent_visits_combined": "100", + "percent_visits_covid": "100", + "percent_visits_influenza": "100", + "percent_visits_rsv": "100", + "percent_visits_smoothed": "100", + "percent_visits_smoothed_covid": "100", + "percent_visits_smoothed_1": "100", + "percent_visits_smoothed_rsv": "100", + "ed_trends_covid": "Decreasing", + "ed_trends_influenza": "Increasing", + "ed_trends_rsv": "Increasing", + "hsa": "All", + "hsa_counties": "All", + "hsa_nci_id": "All", + "fips": "0", + "trend_source": "United States", + "buildnumber": "2025-02-28" + }, + { + "week_end": "2022-10-08T00:00:00.000", + "geography": "Colorado", + "county": "All", + "percent_visits_combined": "100", + "percent_visits_covid": "100", + "percent_visits_influenza": "100", + "percent_visits_rsv": "100", + "percent_visits_smoothed": "100", + "percent_visits_smoothed_covid": "100", + "percent_visits_smoothed_1": "100", + "percent_visits_smoothed_rsv": "100", + "ed_trends_covid": "Decreasing", + "ed_trends_influenza": "No Change", + "ed_trends_rsv": "Increasing", + "hsa": "All", + "hsa_counties": "All", + "hsa_nci_id": "All", + "fips": "8000", + "trend_source": "State", + "buildnumber": "2025-02-28" + }, + { + "week_end": "2022-10-08T00:00:00.000", + "geography": "Colorado", + "county": "Arapahoe", + "percent_visits_combined": "100", + "percent_visits_covid": "100", + "percent_visits_influenza": "100", + "percent_visits_rsv": "100", + "percent_visits_smoothed": "100", + "percent_visits_smoothed_covid": "100", + "percent_visits_smoothed_1": "100", + "percent_visits_smoothed_rsv": "100", + "ed_trends_covid": "Increasing", + "ed_trends_influenza": "Increasing", + "ed_trends_rsv": "Increasing", + "hsa": "Denver (Denver), CO - Jefferson, CO", + "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit", + "hsa_nci_id": "688", + "fips": "8005", + "trend_source": "HSA", + "buildnumber": "2025-02-28" + }, + { + "week_end": "2022-10-15T00:00:00.000", + "geography": "United States", + "county": "All", + "percent_visits_combined": "100", + "percent_visits_covid": "100", + "percent_visits_influenza": "100", + "percent_visits_rsv": "100", + "percent_visits_smoothed": "100", + "percent_visits_smoothed_covid": "100", + "percent_visits_smoothed_1": "100", + "percent_visits_smoothed_rsv": "100", + "ed_trends_covid": "Decreasing", + "ed_trends_influenza": "Increasing", + "ed_trends_rsv": "Increasing", + "hsa": "All", + "hsa_counties": "All", + "hsa_nci_id": "All", + "fips": "0", + "trend_source": "United States", + "buildnumber": "2025-02-28" + }, + { + "week_end": "2022-10-15T00:00:00.000", + "geography": "Colorado", + "county": "All", + "percent_visits_combined": "100", + "percent_visits_covid": "100", + "percent_visits_influenza": "100", + "percent_visits_rsv": "100", + "percent_visits_smoothed": "100", + "percent_visits_smoothed_covid": "100", + "percent_visits_smoothed_1": "100", + "percent_visits_smoothed_rsv": "100", + "ed_trends_covid": "No Change", + "ed_trends_influenza": "No Change", + "ed_trends_rsv": "Increasing", + "hsa": "All", + "hsa_counties": "All", + "hsa_nci_id": "All", + "fips": "8000", + "trend_source": "State", + "buildnumber": "2025-02-28" + }, + { + "week_end": "2022-10-15T00:00:00.000", + "geography": "Colorado", + "county": "Pueblo", + "percent_visits_combined": "100", + "percent_visits_covid": "100", + "percent_visits_influenza": "100", + "percent_visits_rsv": "100", + "percent_visits_smoothed": "100", + "percent_visits_smoothed_covid": "100", + "percent_visits_smoothed_1": "100", + "percent_visits_smoothed_rsv": "100", + "ed_trends_covid": "Increasing", + "ed_trends_influenza": "Increasing", + "ed_trends_rsv": "Increasing", + "hsa": "Pueblo (Pueblo), CO - Las Animas, CO", + "hsa_counties": "Huerfano, Las Animas, Pueblo", + "hsa_nci_id": "704", + "fips": "8101", + "trend_source": "HSA", + "buildnumber": "2025-02-28" + } +] \ No newline at end of file diff --git a/nssp/tests/test_data/secondary_page.txt b/nssp/tests/test_data/secondary_page.txt deleted file mode 100644 index 4b4aaaca7..000000000 --- a/nssp/tests/test_data/secondary_page.txt +++ /dev/null @@ -1,73 +0,0 @@ -[ - { - "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": "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": "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": "Combined", - "geography": "National", - "percent_visits": "2.8", - "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": "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": "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": "Combined", - "geography": "National", - "percent_visits": "3.2", - "status": "Reporting", - "trend_on_date": "Increasing", - "recent_trend": "Decreasing" - } -] \ No newline at end of file diff --git a/nssp/tests/test_pull.py b/nssp/tests/test_pull.py index e4368e7ca..c86e2c0a3 100644 --- a/nssp/tests/test_pull.py +++ b/nssp/tests/test_pull.py @@ -11,34 +11,17 @@ from delphi_nssp.pull import ( get_source_data, pull_nssp_data, - pull_with_socrata_api, ) from delphi_nssp.constants import ( - NEWLINE, SIGNALS, - SIGNALS_MAP, - TYPE_DICT, ) from delphi_utils import get_structured_logger +from conftest import TEST_DATA class TestPullNSSPData: - def test_get_source_data(self): - # Define test parameters - 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", - }, - "common": { - "backup_dir": "/test_backup_dir", - } - } - + def test_get_source_data(self, params_w_patch): logger = get_structured_logger() # Create a mock SSH client @@ -53,23 +36,19 @@ def test_get_source_data(self): assert mock_sftp.get.call_count == 3 @patch("delphi_nssp.pull.Socrata") - def test_normal_pull_nssp_data(self, mock_socrata, caplog): + def test_normal_pull_nssp_data(self, mock_socrata, params, caplog): today = pd.Timestamp.today().strftime("%Y%m%d") - backup_dir = 'test_raw_data_backups' - - # Load test data - with open("test_data/page.txt", "r") as f: - test_data = json.load(f) + backup_dir = params["common"]["backup_dir"] + custom_run = params["common"]["custom_run"] + test_token = params["indicator"]["socrata_token"] # Mock Socrata client and its get method mock_client = MagicMock() - mock_client.get.side_effect = [test_data, []] # Return test data on first call, empty list on second call + mock_client.get.side_effect = [TEST_DATA, []] # Return test data on first call, empty list on second call mock_socrata.return_value = mock_client - custom_run = False logger = get_structured_logger() # Call function with test token - test_token = "test_token" result = pull_nssp_data(test_token, backup_dir, custom_run, logger=logger) # Check logger used: @@ -79,7 +58,7 @@ def test_normal_pull_nssp_data(self, mock_socrata, caplog): backup_files = glob.glob(f"{backup_dir}/{today}.*") assert len(backup_files) == 2, "Backup file was not created" - expected_data = pd.DataFrame(test_data) + expected_data = pd.DataFrame(TEST_DATA) for backup_file in backup_files: if backup_file.endswith(".csv.gz"): dtypes = expected_data.dtypes.to_dict() @@ -107,6 +86,3 @@ def test_normal_pull_nssp_data(self, mock_socrata, caplog): for file in backup_files: os.remove(file) - -if __name__ == "__main__": - unittest.main() diff --git a/nssp/tests/test_run.py b/nssp/tests/test_run.py index 72346cff7..dfd24e791 100644 --- a/nssp/tests/test_run.py +++ b/nssp/tests/test_run.py @@ -1,5 +1,7 @@ +import glob from datetime import datetime, date import json +from pathlib import Path from unittest.mock import patch import tempfile import os @@ -8,24 +10,83 @@ import numpy as np import pandas as pd +from epiweeks import Week from pandas.testing import assert_frame_equal -from delphi_nssp.constants import GEOS, SIGNALS, CSV_COLS +from delphi_nssp.constants import GEOS, SIGNALS, SIGNALS_MAP, DATASET_ID from delphi_nssp.run import ( add_needed_columns ) -def test_add_needed_columns(): - df = pd.DataFrame({"geo_id": ["us"], "val": [1]}) - df = add_needed_columns(df, col_names=None) - assert df.columns.tolist() == [ - "geo_id", - "val", - "se", - "sample_size", - "missing_val", - "missing_se", - "missing_sample_size", - ] - assert df["se"].isnull().all() - assert df["sample_size"].isnull().all() +class TestRun: + def test_add_needed_columns(self): + df = pd.DataFrame({"geo_id": ["us"], "val": [1]}) + df = add_needed_columns(df, col_names=None) + assert df.columns.tolist() == [ + "geo_id", + "val", + "se", + "sample_size", + "missing_val", + "missing_se", + "missing_sample_size", + ] + assert df["se"].isnull().all() + assert df["sample_size"].isnull().all() + + def generate_week_file_prefix(self, dates): + epiweeks_lst = [ Week.fromdate(pd.to_datetime(str(date))) for date in dates ] + date_prefix = [ + str(t.year) + str(t.week).zfill(2) + for t in epiweeks_lst + ] + return date_prefix + + def test_output_files_exist(self, params, run_as_module): + export_dir = params["common"]["export_dir"] + csv_files = [f.name for f in Path(export_dir).glob("*.csv")] + + metrics = list(SIGNALS_MAP.values()) + dates = ["2022-10-01", "2022-10-08", "2022-10-15"] + date_prefix = self.generate_week_file_prefix(dates) + + expected_files = [] + for geo in GEOS: + for d in date_prefix: + for metric in metrics: + expected_files += [f"weekly_{d}_{geo}_{metric}.csv"] + + assert set(csv_files) == set(expected_files) + + for geo in GEOS: + df = pd.read_csv( + f"{export_dir}/weekly_{date_prefix[2]}_{geo}_{metrics[0]}.csv") + + expected_columns = [ + "geo_id", "val", "se", "sample_size", + ] + assert set(expected_columns).issubset(set(df.columns.values)) + + for file in Path(export_dir).glob("*.csv"): + os.remove(file) + + today = pd.Timestamp.today().strftime("%Y%m%d") + backup_dir = glob.glob(f"{Path(params['common']['backup_dir'])}/{today}*") + for file in backup_dir: + os.remove(file) + + def test_valid_hrr(self, params): + export_dir = params["common"]["export_dir"] + csv_files = [f for f in Path(export_dir).glob("*.csv")] + + for f in csv_files: + df = pd.read_csv(f) + assert (df.val == 100).all() + + for file in Path(export_dir).glob("*.csv"): + os.remove(file) + + today = pd.Timestamp.today().strftime("%Y%m%d") + backup_dir = glob.glob(f"{Path(params['common']['backup_dir'])}/{today}*") + for file in backup_dir: + os.remove(file) From dfe0a6a434d804725c5c499092517e09d2d85420 Mon Sep 17 00:00:00 2001 From: Amaris Sim Date: Mon, 3 Mar 2025 15:40:27 -0500 Subject: [PATCH 03/14] fixing copy pasta --- nssp/tests/conftest.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nssp/tests/conftest.py b/nssp/tests/conftest.py index 35490b6fd..57d514a4f 100644 --- a/nssp/tests/conftest.py +++ b/nssp/tests/conftest.py @@ -12,8 +12,7 @@ TEST_DIR = Path(__file__).parent # test data generated with following url with socrata: -# https://data.cdc.gov/resource/ua7e-t2fy.json?$where=weekendingdate%20between%20%272021-08-19T00:00:00.000%27%20and%20%272021-10-19T00:00:00.000%27%20and%20jurisdiction%20in(%27CO%27,%27USA%27) - +# https://data.cdc.gov/resource/rdmq-nq56.json?$where=week_end >= '2022-10-01T00:00:00.000' AND week_end <= '2022-10-20T00:00:00.000' with open(f"{TEST_DIR}/test_data/page.json", "r") as f: TEST_DATA = json.load(f) From a4da3fe6e514101e737292d7e049dfb7366cdbc9 Mon Sep 17 00:00:00 2001 From: Amaris Sim Date: Mon, 3 Mar 2025 15:41:11 -0500 Subject: [PATCH 04/14] name change for host --- nssp/tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nssp/tests/conftest.py b/nssp/tests/conftest.py index 57d514a4f..6d8c93bc4 100644 --- a/nssp/tests/conftest.py +++ b/nssp/tests/conftest.py @@ -52,7 +52,7 @@ def params_w_patch(params): params_copy["patch"] = { "patch_dir": f"{TEST_DIR}/patch_dir", "source_dir": "test_source_dir", - "source_host": "prod.server.edu", + "source_host": "host", "user": "test_user", "start_issue": "2023-01-01", "end_issue": "2023-01-03", From 6b95121032db8e31baa3612530996fa6a7f451bb Mon Sep 17 00:00:00 2001 From: Amaris Sim Date: Mon, 3 Mar 2025 16:32:28 -0500 Subject: [PATCH 05/14] adding test data --- nssp/tests/test_data/page.json | 158 ++++++++++++++++++++++++++++----- 1 file changed, 136 insertions(+), 22 deletions(-) diff --git a/nssp/tests/test_data/page.json b/nssp/tests/test_data/page.json index 34dfa71a8..e80d2817f 100644 --- a/nssp/tests/test_data/page.json +++ b/nssp/tests/test_data/page.json @@ -18,7 +18,52 @@ "hsa_counties": "All", "hsa_nci_id": "All", "fips": "0", - "trend_source": "United States" + "trend_source": "United States", + "buildnumber": "2025-02-28" + }, + { + "week_end": "2022-10-01T00:00:00.000", + "geography": "Colorado", + "county": "All", + "percent_visits_combined": "1.86", + "percent_visits_covid": "1.61", + "percent_visits_influenza": "0.1", + "percent_visits_rsv": "0.16", + "percent_visits_smoothed": "1.83", + "percent_visits_smoothed_covid": "1.61", + "percent_visits_smoothed_1": "0.1", + "percent_visits_smoothed_rsv": "0.12", + "ed_trends_covid": "Decreasing", + "ed_trends_influenza": "Increasing", + "ed_trends_rsv": "Increasing", + "hsa": "All", + "hsa_counties": "All", + "hsa_nci_id": "All", + "fips": "8000", + "trend_source": "State", + "buildnumber": "2025-02-28" + }, + { + "week_end": "2022-10-01T00:00:00.000", + "geography": "Colorado", + "county": "Broomfield", + "percent_visits_combined": "2.29", + "percent_visits_covid": "1.78", + "percent_visits_influenza": "0.11", + "percent_visits_rsv": "0.4", + "percent_visits_smoothed": "2.06", + "percent_visits_smoothed_covid": "1.7", + "percent_visits_smoothed_1": "0.07", + "percent_visits_smoothed_rsv": "0.32", + "ed_trends_covid": "No Change", + "ed_trends_influenza": "Increasing", + "ed_trends_rsv": "Increasing", + "hsa": "Boulder, CO - Broomfield, CO", + "hsa_counties": "Boulder, Broomfield", + "hsa_nci_id": "795", + "fips": "8014", + "trend_source": "HSA", + "buildnumber": "2025-02-28" }, { "week_end": "2022-10-08T00:00:00.000", @@ -39,7 +84,52 @@ "hsa_counties": "All", "hsa_nci_id": "All", "fips": "0", - "trend_source": "United States" + "trend_source": "United States", + "buildnumber": "2025-02-28" + }, + { + "week_end": "2022-10-08T00:00:00.000", + "geography": "Colorado", + "county": "All", + "percent_visits_combined": "1.82", + "percent_visits_covid": "1.54", + "percent_visits_influenza": "0.09", + "percent_visits_rsv": "0.2", + "percent_visits_smoothed": "1.83", + "percent_visits_smoothed_covid": "1.58", + "percent_visits_smoothed_1": "0.1", + "percent_visits_smoothed_rsv": "0.16", + "ed_trends_covid": "Decreasing", + "ed_trends_influenza": "No Change", + "ed_trends_rsv": "Increasing", + "hsa": "All", + "hsa_counties": "All", + "hsa_nci_id": "All", + "fips": "8000", + "trend_source": "State", + "buildnumber": "2025-02-28" + }, + { + "week_end": "2022-10-08T00:00:00.000", + "geography": "Colorado", + "county": "Arapahoe", + "percent_visits_combined": "1.78", + "percent_visits_covid": "1.43", + "percent_visits_influenza": "0.12", + "percent_visits_rsv": "0.23", + "percent_visits_smoothed": "1.74", + "percent_visits_smoothed_covid": "1.4", + "percent_visits_smoothed_1": "0.12", + "percent_visits_smoothed_rsv": "0.25", + "ed_trends_covid": "Increasing", + "ed_trends_influenza": "Increasing", + "ed_trends_rsv": "Increasing", + "hsa": "Denver (Denver), CO - Jefferson, CO", + "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit", + "hsa_nci_id": "688", + "fips": "8005", + "trend_source": "HSA", + "buildnumber": "2025-02-28" }, { "week_end": "2022-10-15T00:00:00.000", @@ -60,27 +150,51 @@ "hsa_counties": "All", "hsa_nci_id": "All", "fips": "0", - "trend_source": "United States" + "trend_source": "United States", + "buildnumber": "2025-02-28" + }, + { + "week_end": "2022-10-15T00:00:00.000", + "geography": "Colorado", + "county": "All", + "percent_visits_combined": "2.22", + "percent_visits_covid": "1.7", + "percent_visits_influenza": "0.14", + "percent_visits_rsv": "0.39", + "percent_visits_smoothed": "1.97", + "percent_visits_smoothed_covid": "1.62", + "percent_visits_smoothed_1": "0.11", + "percent_visits_smoothed_rsv": "0.25", + "ed_trends_covid": "No Change", + "ed_trends_influenza": "No Change", + "ed_trends_rsv": "Increasing", + "hsa": "All", + "hsa_counties": "All", + "hsa_nci_id": "All", + "fips": "8000", + "trend_source": "State", + "buildnumber": "2025-02-28" }, { - "week_end": "2023-05-13T00:00:00.000", - "geography": "Colorado", - "county": "Jefferson", - "percent_visits_combined": "0.84", - "percent_visits_covid": "0.59", - "percent_visits_influenza": "0.23", - "percent_visits_rsv": "0.03", - "percent_visits_smoothed": "0.83", - "percent_visits_smoothed_covid": "0.62", - "percent_visits_smoothed_1": "0.18", - "percent_visits_smoothed_rsv": "0.02", - "ed_trends_covid": "Decreasing", - "ed_trends_influenza": "No Change", - "ed_trends_rsv": "Decreasing", - "hsa": "Denver (Denver), CO - Jefferson, CO", - "hsa_counties": "Adams, Arapahoe, Clear Creek, Denver, Douglas, Elbert, Gilpin, Grand, Jefferson, Park, Summit", - "hsa_nci_id": "688", - "fips": "8059", - "trend_source": "HSA" + "week_end": "2022-10-15T00:00:00.000", + "geography": "Colorado", + "county": "Pueblo", + "percent_visits_combined": "3.24", + "percent_visits_covid": "2.97", + "percent_visits_influenza": "0.14", + "percent_visits_rsv": "0.14", + "percent_visits_smoothed": "2.99", + "percent_visits_smoothed_covid": "2.82", + "percent_visits_smoothed_1": "0.07", + "percent_visits_smoothed_rsv": "0.1", + "ed_trends_covid": "Increasing", + "ed_trends_influenza": "Increasing", + "ed_trends_rsv": "Increasing", + "hsa": "Pueblo (Pueblo), CO - Las Animas, CO", + "hsa_counties": "Huerfano, Las Animas, Pueblo", + "hsa_nci_id": "704", + "fips": "8101", + "trend_source": "HSA", + "buildnumber": "2025-02-28" } ] From 59dd0366c7d4092cbbd224cb2ac1e2785a1b81ca Mon Sep 17 00:00:00 2001 From: Amaris Sim Date: Tue, 4 Mar 2025 09:23:23 -0500 Subject: [PATCH 06/14] suggested commits --- nssp/delphi_nssp/run.py | 3 --- nssp/raw_backup_files/.gitignore | 0 2 files changed, 3 deletions(-) create mode 100644 nssp/raw_backup_files/.gitignore diff --git a/nssp/delphi_nssp/run.py b/nssp/delphi_nssp/run.py index 57caf20c5..82a96e5ed 100644 --- a/nssp/delphi_nssp/run.py +++ b/nssp/delphi_nssp/run.py @@ -117,14 +117,12 @@ def run_module(params, logger=None): lambda x: us.states.lookup(x).abbr.lower() if us.states.lookup(x) else "dc" ) elif geo == "hrr": - df = df[df["county"] != "All"] df = df[["fips", "val", "timestamp"]] df = geo_mapper.add_population_column(df, geocode_type="fips", geocode_col="fips") df = geo_mapper.add_geocode(df, "fips", "hrr", from_col="fips", new_col="geo_id") df = geo_mapper.aggregate_by_weighted_sum(df, "geo_id", "val", "timestamp", "population") df = df.rename(columns={"weighted_val": "val"}) elif geo == "msa": - df = df[df["county"] != "All"] df = df[["fips", "val", "timestamp"]] # fips -> msa doesn't have a weighted version, so we need to add columns and sum ourselves df = geo_mapper.add_population_column(df, geocode_type="fips", geocode_col="fips") @@ -142,7 +140,6 @@ def run_module(params, logger=None): else: df = df[df["county"] != "All"] df["geo_id"] = df["fips"] - # 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)) diff --git a/nssp/raw_backup_files/.gitignore b/nssp/raw_backup_files/.gitignore new file mode 100644 index 000000000..e69de29bb From ffb42ab9de1871fad949cb2053d5041967abcbb2 Mon Sep 17 00:00:00 2001 From: Amaris Sim Date: Tue, 4 Mar 2025 09:26:07 -0500 Subject: [PATCH 07/14] re adding content --- nssp/raw_backup_files/.gitignore | 120 +++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) diff --git a/nssp/raw_backup_files/.gitignore b/nssp/raw_backup_files/.gitignore index e69de29bb..3c515981b 100644 --- a/nssp/raw_backup_files/.gitignore +++ b/nssp/raw_backup_files/.gitignore @@ -0,0 +1,120 @@ +# You should hard commit a prototype for this file, but we +# want to avoid accidental adding of API tokens and other +# private data parameters +params.json + +# Do not commit output files +receiving/*.csv + +# Remove macOS files +.DS_Store + +# virtual environment +dview/ + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +coverage.xml +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +.static_storage/ +.media/ +local_settings.py + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ \ No newline at end of file From 8254aa51c5050e9aebeeb6c3a30c765eb3f920ef Mon Sep 17 00:00:00 2001 From: Amaris Sim Date: Tue, 4 Mar 2025 09:32:15 -0500 Subject: [PATCH 08/14] moving to proper place --- nssp/{raw_backup_files => raw_data_backups}/.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename nssp/{raw_backup_files => raw_data_backups}/.gitignore (100%) diff --git a/nssp/raw_backup_files/.gitignore b/nssp/raw_data_backups/.gitignore similarity index 100% rename from nssp/raw_backup_files/.gitignore rename to nssp/raw_data_backups/.gitignore From 7ae7bcd590035d8b3a5d346ccb837debb30da133 Mon Sep 17 00:00:00 2001 From: Amaris Sim Date: Wed, 5 Mar 2025 10:29:31 -0500 Subject: [PATCH 09/14] lint --- nssp/delphi_nssp/constants.py | 1 + nssp/delphi_nssp/pull.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/nssp/delphi_nssp/constants.py b/nssp/delphi_nssp/constants.py index c21bdec0e..4aa5695d8 100644 --- a/nssp/delphi_nssp/constants.py +++ b/nssp/delphi_nssp/constants.py @@ -1,4 +1,5 @@ """Registry for variations.""" + DATASET_ID = "rdmq-nq56" GEOS = [ diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index c7c347ea2..8113e418f 100644 --- a/nssp/delphi_nssp/pull.py +++ b/nssp/delphi_nssp/pull.py @@ -13,7 +13,7 @@ from delphi_utils import create_backup_csv from sodapy import Socrata -from .constants import NEWLINE, SIGNALS, SIGNALS_MAP, TYPE_DICT, DATASET_ID +from .constants import DATASET_ID, NEWLINE, SIGNALS, SIGNALS_MAP, TYPE_DICT def print_callback(remote_file_name, logger, bytes_so_far, bytes_total, progress_chunks): From a4d7b9ed66027fe56c26691c4675d5761d5dee71 Mon Sep 17 00:00:00 2001 From: Amaris Sim Date: Wed, 5 Mar 2025 10:54:44 -0500 Subject: [PATCH 10/14] fixed test --- nssp/tests/test_pull.py | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/nssp/tests/test_pull.py b/nssp/tests/test_pull.py index c86e2c0a3..4c3baf2f5 100644 --- a/nssp/tests/test_pull.py +++ b/nssp/tests/test_pull.py @@ -6,6 +6,8 @@ import time from datetime import datetime import pdb + +import mock import pandas as pd from delphi_nssp.pull import ( @@ -29,12 +31,20 @@ def test_get_source_data(self, params_w_patch): mock_sftp = MagicMock() mock_sftp.stat = MagicMock() mock_ssh.open_sftp.return_value = mock_sftp + + source_path = params_w_patch["common"]["backup_dir"] + dest_path = params_w_patch["patch"]["source_dir"] + + dates = pd.date_range(params_w_patch["patch"]["start_issue"], params_w_patch["patch"]["end_issue"]) + files = [f"{date.strftime('%Y%m%d')}.csv.gz" for date in dates] + with patch("paramiko.SSHClient", return_value=mock_ssh): - get_source_data(params, logger) + get_source_data(params_w_patch, logger) - mock_sftp.chdir.assert_called_once_with("/test_backup_dir") - assert mock_sftp.get.call_count == 3 + mock_sftp.chdir.assert_called_once_with(source_path) + for file in files: + mock_sftp.get.has_calls(file, f"{dest_path}/{file}", mock.ANY) @patch("delphi_nssp.pull.Socrata") def test_normal_pull_nssp_data(self, mock_socrata, params, caplog): today = pd.Timestamp.today().strftime("%Y%m%d") From 19358d44a96d5297da3ea45893c459ba612bc067 Mon Sep 17 00:00:00 2001 From: Amaris Sim Date: Wed, 5 Mar 2025 13:49:51 -0500 Subject: [PATCH 11/14] fix import error --- nssp/tests/test_pull.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nssp/tests/test_pull.py b/nssp/tests/test_pull.py index 4c3baf2f5..541384d6d 100644 --- a/nssp/tests/test_pull.py +++ b/nssp/tests/test_pull.py @@ -7,7 +7,7 @@ from datetime import datetime import pdb -import mock +import unittest.mock as mock import pandas as pd from delphi_nssp.pull import ( From 4607a69566e095dc20e9a5e643e07e30266689dc Mon Sep 17 00:00:00 2001 From: Amaris Sim Date: Wed, 5 Mar 2025 15:31:54 -0500 Subject: [PATCH 12/14] adding fixture for hrr run --- nssp/tests/test_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nssp/tests/test_run.py b/nssp/tests/test_run.py index dfd24e791..749c9541d 100644 --- a/nssp/tests/test_run.py +++ b/nssp/tests/test_run.py @@ -75,7 +75,7 @@ def test_output_files_exist(self, params, run_as_module): for file in backup_dir: os.remove(file) - def test_valid_hrr(self, params): + def test_valid_hrr(self, run_as_module_hrr, params): export_dir = params["common"]["export_dir"] csv_files = [f for f in Path(export_dir).glob("*.csv")] From c853c99eb3e66f932233f0da5d7da12926dd0935 Mon Sep 17 00:00:00 2001 From: Amaris Sim Date: Thu, 6 Mar 2025 10:53:15 -0500 Subject: [PATCH 13/14] comment on test for hrr --- nssp/tests/test_run.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nssp/tests/test_run.py b/nssp/tests/test_run.py index 749c9541d..090049f12 100644 --- a/nssp/tests/test_run.py +++ b/nssp/tests/test_run.py @@ -79,6 +79,7 @@ def test_valid_hrr(self, run_as_module_hrr, params): export_dir = params["common"]["export_dir"] csv_files = [f for f in Path(export_dir).glob("*.csv")] + # If summed normally, will give a huge number, If summed weighted, will give 100% for f in csv_files: df = pd.read_csv(f) assert (df.val == 100).all() From 77f337be09e288391051858ba5fddee39c1cb624 Mon Sep 17 00:00:00 2001 From: aysim319 Date: Tue, 11 Mar 2025 16:29:28 -0400 Subject: [PATCH 14/14] Apply suggestions from code review Co-authored-by: minhkhul <118945681+minhkhul@users.noreply.github.com> --- nssp/tests/conftest.py | 12 ++++++++++++ nssp/tests/test_run.py | 1 + 2 files changed, 13 insertions(+) diff --git a/nssp/tests/conftest.py b/nssp/tests/conftest.py index 6d8c93bc4..c308b6e6e 100644 --- a/nssp/tests/conftest.py +++ b/nssp/tests/conftest.py @@ -62,6 +62,12 @@ def params_w_patch(params): @pytest.fixture(scope="function") def run_as_module(params): + """ + Fixture to use TEST_DATA when testing run_module. + + This fixture patches Socrara to return the predefined test data + """ + with patch('sodapy.Socrata.get') as mock_get: def side_effect(*args, **kwargs): if kwargs['offset'] == 0: @@ -76,6 +82,12 @@ def side_effect(*args, **kwargs): @pytest.fixture(scope="function") def run_as_module_hrr(params): + """ + Fixture to use HRR_TEST_DATA when testing run_module. + + This fixture patches socrara to return the predefined test data for HRR region. + """ + with patch('sodapy.Socrata.get') as mock_get, \ patch('delphi_nssp.run.GEOS', ["hrr"]): def side_effect(*args, **kwargs): diff --git a/nssp/tests/test_run.py b/nssp/tests/test_run.py index 090049f12..c24a76af4 100644 --- a/nssp/tests/test_run.py +++ b/nssp/tests/test_run.py @@ -58,6 +58,7 @@ def test_output_files_exist(self, params, run_as_module): assert set(csv_files) == set(expected_files) + # Verify that all generated file have correct columns. for geo in GEOS: df = pd.read_csv( f"{export_dir}/weekly_{date_prefix[2]}_{geo}_{metrics[0]}.csv")