diff --git a/nssp/delphi_nssp/constants.py b/nssp/delphi_nssp/constants.py index 9b98d2012f..4aa5695d80 100644 --- a/nssp/delphi_nssp/constants.py +++ b/nssp/delphi_nssp/constants.py @@ -1,5 +1,7 @@ """Registry for variations.""" +DATASET_ID = "rdmq-nq56" + GEOS = [ "hrr", "msa", diff --git a/nssp/delphi_nssp/pull.py b/nssp/delphi_nssp/pull.py index d753338ae4..8113e418f2 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 DATASET_ID, NEWLINE, SIGNALS, SIGNALS_MAP, TYPE_DICT 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 5ac2380a53..82a96e5ed2 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", "population") + 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 diff --git a/nssp/tests/conftest.py b/nssp/tests/conftest.py new file mode 100644 index 0000000000..c308b6e6ef --- /dev/null +++ b/nssp/tests/conftest.py @@ -0,0 +1,101 @@ +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/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) + +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": "host", + "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): + """ + 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: + 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): + """ + 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): + 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 2ae4dd231c..0000000000 --- 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 0000000000..e69de29bb2 diff --git a/nssp/tests/test_data/page.json b/nssp/tests/test_data/page.json new file mode 100644 index 0000000000..e80d2817f0 --- /dev/null +++ b/nssp/tests/test_data/page.json @@ -0,0 +1,200 @@ +[ + { + "week_end": "2022-10-01T00:00:00.000", + "geography": "United States", + "county": "All", + "percent_visits_combined": "2.84", + "percent_visits_covid": "1.84", + "percent_visits_influenza": "0.48", + "percent_visits_rsv": "0.55", + "percent_visits_smoothed": "2.83", + "percent_visits_smoothed_covid": "2.07", + "percent_visits_smoothed_1": "0.34", + "percent_visits_smoothed_rsv": "0.44", + "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": "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", + "geography": "United States", + "county": "All", + "percent_visits_combined": "2.93", + "percent_visits_covid": "1.68", + "percent_visits_influenza": "0.68", + "percent_visits_rsv": "0.6", + "percent_visits_smoothed": "2.85", + "percent_visits_smoothed_covid": "1.85", + "percent_visits_smoothed_1": "0.49", + "percent_visits_smoothed_rsv": "0.53", + "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": "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", + "geography": "United States", + "county": "All", + "percent_visits_combined": "3.25", + "percent_visits_covid": "1.64", + "percent_visits_influenza": "0.9", + "percent_visits_rsv": "0.74", + "percent_visits_smoothed": "3.01", + "percent_visits_smoothed_covid": "1.72", + "percent_visits_smoothed_1": "0.69", + "percent_visits_smoothed_rsv": "0.63", + "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": "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": "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" + } +] diff --git a/nssp/tests/test_data/page.txt b/nssp/tests/test_data/page.txt deleted file mode 100644 index 34dfa71a8c..0000000000 --- a/nssp/tests/test_data/page.txt +++ /dev/null @@ -1,86 +0,0 @@ -[ - { - "week_end": "2022-10-01T00:00:00.000", - "geography": "United States", - "county": "All", - "percent_visits_combined": "2.84", - "percent_visits_covid": "1.84", - "percent_visits_influenza": "0.48", - "percent_visits_rsv": "0.55", - "percent_visits_smoothed": "2.83", - "percent_visits_smoothed_covid": "2.07", - "percent_visits_smoothed_1": "0.34", - "percent_visits_smoothed_rsv": "0.44", - "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" - }, - { - "week_end": "2022-10-08T00:00:00.000", - "geography": "United States", - "county": "All", - "percent_visits_combined": "2.93", - "percent_visits_covid": "1.68", - "percent_visits_influenza": "0.68", - "percent_visits_rsv": "0.6", - "percent_visits_smoothed": "2.85", - "percent_visits_smoothed_covid": "1.85", - "percent_visits_smoothed_1": "0.49", - "percent_visits_smoothed_rsv": "0.53", - "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" - }, - { - "week_end": "2022-10-15T00:00:00.000", - "geography": "United States", - "county": "All", - "percent_visits_combined": "3.25", - "percent_visits_covid": "1.64", - "percent_visits_influenza": "0.9", - "percent_visits_rsv": "0.74", - "percent_visits_smoothed": "3.01", - "percent_visits_smoothed_covid": "1.72", - "percent_visits_smoothed_1": "0.69", - "percent_visits_smoothed_rsv": "0.63", - "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" - }, - { - "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" - } -] 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 0000000000..34ae27b35e --- /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 4b4aaaca70..0000000000 --- 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 e4368e7ca1..541384d6d4 100644 --- a/nssp/tests/test_pull.py +++ b/nssp/tests/test_pull.py @@ -6,39 +6,24 @@ import time from datetime import datetime import pdb + +import unittest.mock as mock import pandas as pd 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 @@ -46,30 +31,34 @@ def test_get_source_data(self): 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, 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 +68,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 +96,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 72346cff7b..c24a76af42 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,85 @@ 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) + + # 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") + + 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, 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() + + 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)