diff --git a/fieldExtraction/src/testbed/one_to_n_comparison.py b/fieldExtraction/src/testbed/one_to_n_comparison.py index 4358838..7b22af0 100644 --- a/fieldExtraction/src/testbed/one_to_n_comparison.py +++ b/fieldExtraction/src/testbed/one_to_n_comparison.py @@ -20,8 +20,8 @@ def are_entries_similar_field_by_field(entry1: tuple, entry2: tuple, thresholds= # Compare each field with its corresponding threshold for i, (field1, field2) in enumerate(zip(entry1, entry2)): - field1_str = str(field1) - field2_str = str(field2) + field1_str = str(field1).lower() + field2_str = str(field2).lower() # Calculate similarity for this field similarity = fuzz.token_sort_ratio(field1_str, field2_str) @@ -83,8 +83,8 @@ def evaluate_one_to_n_fields_fuzzy_matching_field_by_field( matched_predictions.add(j) break # Calculate unmatched entries - total_false_negatives += len(labeled_entries) - len(matched_labels) - total_false_positives += len(predicted_entries) - len(matched_predictions) + total_false_negatives += len(labeled_entries) - len(matched_labels) # False negatives are labeled entries that were not matched + total_false_positives += len(predicted_entries) - len(matched_predictions) # False positives are predicted entries that were not matched # Calculate overall metrics diff --git a/fieldExtraction/src/testbed/test_one_to_n.ipynb b/fieldExtraction/src/testbed/test_one_to_n.ipynb index 8bf1019..46c6542 100644 --- a/fieldExtraction/src/testbed/test_one_to_n.ipynb +++ b/fieldExtraction/src/testbed/test_one_to_n.ipynb @@ -73,16 +73,22 @@ "source": [ "\n", "# make list of dataframes from labels_files\n", + "# Track where labels are coming from\n", "labels_dfs = []\n", "for filename in labels_files:\n", " print(f\"Reading {filename}\")\n", " if filename == \"DocziAI_2-12.xlsx\":\n", - " labels_dfs.append(pd.read_excel(\"Reimbursement Field Files/\" + filename, sheet_name=\"doczy-ai-test-20240211\", skiprows=3))\n", + " df_extract = pd.read_excel(\"Reimbursement Field Files/\" + filename, sheet_name=\"doczy-ai-test-20240211\", skiprows=3)\n", + " df_extract['data_source'] = filename\n", + " labels_dfs.append(df_extract)\n", " elif filename.endswith(\".xlsx\"):\n", - " labels_dfs.append(pd.read_excel(\"Reimbursement Field Files/\" + filename))\n", + " df_extract = pd.read_excel(\"Reimbursement Field Files/\" + filename)\n", + " df_extract['data_source'] = filename\n", + " labels_dfs.append(df_extract)\n", " elif filename.endswith(\".csv\"):\n", - " labels_dfs.append(pd.read_csv(\"Reimbursement Field Files/\" + filename))\n", - " \n", + " df_extract = pd.read_csv(\"Reimbursement Field Files/\" + filename)\n", + " df_extract['data_source'] = filename\n", + " labels_dfs.append(df_extract)\n", "\n", "print(f\"Extracted {len(labels_dfs)} dataframes.\")\n" ] @@ -95,7 +101,7 @@ "source": [ "labels_df = pd.concat(labels_dfs, ignore_index=True)\n", "# This is any consolidated output from the model; they can be found in S3\n", - "predictions_df = pd.read_csv('inv-test-0305-RESULTS.csv')\n", + "predictions_df = pd.read_csv('inv-test-0305-PM-RESULTS.csv')\n", "\n", "# For all float and int columns, standardize to Int64 and handle NaN values (optional)\n", "# labels_df = labels_df.astype({col: 'Int64' for col in labels_df.select_dtypes(include=['float', 'int']).columns})\n", @@ -106,13 +112,5205 @@ "cell_type": "code", "execution_count": 5, "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.microsoft.datawrangler.viewer.v0+json": { + "columns": [ + { + "name": "index", + "rawType": "int64", + "type": "integer" + }, + { + "name": "PROV_GROUP_TIN", + "rawType": "object", + "type": "unknown" + }, + { + "name": "PROV_TIN_OTHER", + "rawType": "object", + "type": "unknown" + }, + { + "name": "PROV_GROUP_NPI", + "rawType": "object", + "type": "unknown" + }, + { + "name": "PROV_NPI_OTHER", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_TITLE", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_EFFECTIVE_DT", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_AUTO_RENEWAL_TERM", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_TERMINATION_DT", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_AUTO_RENEWAL_IND", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_CLAIM_TYPE_CD", + "rawType": "object", + "type": "string" + }, + { + "name": "CONTRACT_AMENDMENT_NUM", + "rawType": "object", + "type": "unknown" + }, + { + "name": "PAYER_NAME", + "rawType": "object", + "type": "string" + }, + { + "name": "PROV_GROUP_NAME_FULL", + "rawType": "object", + "type": "string" + }, + { + "name": "PROV_FULL_NAME", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_FILE_NAME", + "rawType": "object", + "type": "string" + }, + { + "name": "CONTRACT_SERVICE_CD_OR_DESC", + "rawType": "object", + "type": "string" + }, + { + "name": "CONTRACT_REIMBURSEMENT_METHOD", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_CARVEOUT_CD", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_CARVEOUT_IND", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_DEFAULT_IND", + "rawType": "object", + "type": "string" + }, + { + "name": "CONTRACT_LESSER_OF_IND", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_GREATER_OF_IND", + "rawType": "object", + "type": "unknown" + }, + { + "name": "AARETE_DERIVED_REIMBURSEMENT_METHOD", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_REIMBURSEMENT_FEE_RATE", + "rawType": "float64", + "type": "float" + }, + { + "name": "CONTRACT_REIMBURSEMENT_PERCENT_RATE", + "rawType": "object", + "type": "unknown" + }, + { + "name": "NOT_TO_EXCEED_IND", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_FEE_SCHEDULE_DESC", + "rawType": "object", + "type": "unknown" + }, + { + "name": "AARETE_DERIVED_FEE_SCHEDULE", + "rawType": "object", + "type": "unknown" + }, + { + "name": "AARETE_DERIVED_FEE_SCHEDULE_VERSION", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_BILL_TYPE", + "rawType": "float64", + "type": "float" + }, + { + "name": "CPT4_PROC_CD", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CPT4_PROC_MOD", + "rawType": "object", + "type": "unknown" + }, + { + "name": "REVENUE_CD", + "rawType": "object", + "type": "unknown" + }, + { + "name": "DIAG_CD", + "rawType": "float64", + "type": "float" + }, + { + "name": "FACILITY_GROUPER_CD", + "rawType": "object", + "type": "unknown" + }, + { + "name": "LINE_NDC_NUM", + "rawType": "float64", + "type": "float" + }, + { + "name": "CLAIM_ADMIT_TYPE_CD", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CPT4_PROC_DESC", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CPT4_PROC_MOD_DESC", + "rawType": "object", + "type": "unknown" + }, + { + "name": "DIAG_CD_DESC", + "rawType": "float64", + "type": "float" + }, + { + "name": "REVENUE_CD_DESC", + "rawType": "object", + "type": "unknown" + }, + { + "name": "FACILITY_GROUPER_DESC", + "rawType": "object", + "type": "unknown" + }, + { + "name": "GROUPER_TYPE", + "rawType": "object", + "type": "unknown" + }, + { + "name": "AUTH_ADMIT_TYPE_DESC", + "rawType": "float64", + "type": "float" + }, + { + "name": "PROV_REIMBURSEMENT_TIN", + "rawType": "object", + "type": "unknown" + }, + { + "name": "PROV_REIMBURSEMENT_NPI", + "rawType": "object", + "type": "unknown" + }, + { + "name": "REIMBURSEMENT_EFFECTIVE_DATE", + "rawType": "object", + "type": "unknown" + }, + { + "name": "REIMBURSEMENT_TERMINATION_DATE", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_LINE_OF_BUSINESS", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_NETWORK", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_PRODUCT", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_PROGRAM", + "rawType": "object", + "type": "unknown" + }, + { + "name": "EXHIBIT_NAME", + "rawType": "object", + "type": "unknown" + }, + { + "name": "EXHIBIT_PAGE", + "rawType": "float64", + "type": "float" + }, + { + "name": "AARETE_DERIVED_LINE_OF_BUSINESS", + "rawType": "object", + "type": "unknown" + }, + { + "name": "AARETE_DERIVED_NETWORK", + "rawType": "object", + "type": "unknown" + }, + { + "name": "AARETE_DERIVED_PRODUCT", + "rawType": "object", + "type": "unknown" + }, + { + "name": "AARETE_DERIVED_PROGRAM", + "rawType": "object", + "type": "unknown" + }, + { + "name": "AARETE_DERIVED_CLAIM_TYPE_CD", + "rawType": "object", + "type": "string" + }, + { + "name": "CLIENT_NAME", + "rawType": "object", + "type": "string" + }, + { + "name": "AARETE_DERIVED_TERMINATION_DATE", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_FACILITY_STOP_LOSS_TERMS", + "rawType": "object", + "type": "unknown" + }, + { + "name": "FACILITY_STOP_LOSS_FIXED_LOSS_THRESHOLD", + "rawType": "object", + "type": "unknown" + }, + { + "name": "FACILITY_STOP_LOSS_PERCENT_RATE_ON_EXCESS_CHARGES", + "rawType": "float64", + "type": "float" + }, + { + "name": "FACILITY_STOP_LOSS_DAILY_MAXIMUM", + "rawType": "float64", + "type": "float" + }, + { + "name": "FACILITY_STOP_LOSS_EXCLUSION_CD", + "rawType": "object", + "type": "unknown" + }, + { + "name": "FACILITY_STOP_LOSS_EXCLUSION_DESC", + "rawType": "object", + "type": "unknown" + }, + { + "name": "CONTRACT_FACILITY_OUTLIER_TERMS", + "rawType": "object", + "type": "unknown" + }, + { + "name": "FACILITY_OUTLIER_FIXED_LOSS_THRESHOLD", + "rawType": "object", + "type": "unknown" + }, + { + "name": "FACILITY_OUTLIER_PERCENT_RATE_ON_EXCESS_CHARGES", + "rawType": "float64", + "type": "float" + }, + { + "name": "FACILITY_OUTLIER_MAXIMUM", + "rawType": "object", + "type": "unknown" + }, + { + "name": "FACILITY_OUTLIER_EXCLUSION_CD", + "rawType": "float64", + "type": "float" + }, + { + "name": "FACILITY_OUTLIER_EXCLUSION_DESC", + "rawType": "float64", + "type": "float" + }, + { + "name": "data_source", + "rawType": "object", + "type": "string" + }, + { + "name": "1861445421", + "rawType": "float64", + "type": "float" + }, + { + "name": "DIAG_CD_LIST", + "rawType": "float64", + "type": "float" + }, + { + "name": "REIMBURSEMENT_PROV_NAME", + "rawType": "object", + "type": "unknown" + }, + { + "name": "AARETE_DERIVED_PROV_TYPE", + "rawType": "object", + "type": "unknown" + }, + { + "name": "Lesser of", + "rawType": "object", + "type": "unknown" + }, + { + "name": "JD NOTE, Action Required", + "rawType": "object", + "type": "unknown" + }, + { + "name": "NOT_TO_EXCEED", + "rawType": "object", + "type": "unknown" + }, + { + "name": "REIMBURSEMENT_EFFECTIVE_DT", + "rawType": "datetime64[ns]", + "type": "datetime" + }, + { + "name": "REIMBURSEMENT_TERMINATION_DT", + "rawType": "datetime64[ns]", + "type": "datetime" + } + ], + "conversionMethod": "pd.DataFrame", + "ref": "2876bfc7-979c-4c2c-bbfa-1c86db5e9a91", + "rows": [ + [ + "1773", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Medicine", + "maximum plan allowable shall be the lesser of Provider's Billed Charges or the fee schedule set forth below Reimbursement will be based upon the 2018 RBRVS version as printed in the Federal Register January 1 using the Site of Service Based RVU (No GPCI applied) with a conversion factor of $62.00", + null, + "N", + "N", + "Y", + "N", + "Fee Schedule", + "62.0", + null, + null, + "2018 RBRVS version as printed in the Federal Register January 1", + "RBRVS", + "2018", + null, + "90281-99607", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "20.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1774", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Medicine", + "maximum plan allowable shall be the lesser of Provider's Billed Charges or the fee schedule set forth below Reimbursement will be based upon the 2018 RBRVS version as printed in the Federal Register January 1 using the Site of Service Based RVU (No GPCI applied) with a conversion factor of $62.00", + null, + "N", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "90281-99607", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "20.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1775", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Surgery", + "maximum plan allowable shall be the lesser of Provider's Billed Charges or the fee schedule set forth below Reimbursement will be based upon the 2018 RBRVS version as printed in the Federal Register January 1 using the Site of Service Based RVU (No GPCI applied) with a conversion factor of $62.00", + null, + "N", + "N", + "Y", + "N", + "Fee Schedule", + "62.0", + null, + null, + "2018 RBRVS version as printed in the Federal Register January 1", + "RBRVS", + "2018", + null, + "10004-69990", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "20.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1776", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Surgery", + "maximum plan allowable shall be the lesser of Provider's Billed Charges or the fee schedule set forth below Reimbursement will be based upon the 2018 RBRVS version as printed in the Federal Register January 1 using the Site of Service Based RVU (No GPCI applied) with a conversion factor of $62.00", + null, + "N", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "10004-69990", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "20.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1777", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Lab/Pathology", + "maximum plan allowable shall be the lesser of Provider's Billed Charges or the fee schedule set forth below Reimbursement will be based upon the 2018 RBRVS version as printed in the Federal Register January 1 using the Site of Service Based RVU (No GPCI applied) with a conversion factor of $59.00", + null, + "N", + "N", + "Y", + "N", + "Fee Schedule", + "59.0", + null, + null, + "2018 RBRVS version as printed in the Federal Register January 1", + "RBRVS", + "2018", + null, + "80047-89398", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "20.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1778", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Lab/Pathology", + "maximum plan allowable shall be the lesser of Provider's Billed Charges or the fee schedule set forth below Reimbursement will be based upon the 2018 RBRVS version as printed in the Federal Register January 1 using the Site of Service Based RVU (No GPCI applied) with a conversion factor of $59.00", + null, + "N", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "80047-89398", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "20.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1779", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Laboratory services without an RBRVS weight", + "will be allowed at 100% of the 2018 Medicare Clinical Diagnostic Lab Fee Schedule available as of January 1.", + null, + "N", + "N", + "N", + "N", + "Fee Schedule", + null, + "100", + null, + "2018 Medicare Clinical Diagnostic Lab Fee Schedule", + "MEDICARE", + "2018", + null, + "80047-89398", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "20.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1780", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Radiology", + "maximum plan allowable shall be the lesser of Provider's Billed Charges or the fee schedule set forth below Reimbursement will be based upon the 2018 RBRVS version as printed in the Federal Register January 1 using the Site of Service Based RVU (No GPCI applied) with a conversion factor of $59.00", + null, + "N", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "70010-79999", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "20.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1781", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Radiology", + "maximum plan allowable shall be the lesser of Provider's Billed Charges or the fee schedule set forth below Reimbursement will be based upon the 2018 RBRVS version as printed in the Federal Register January 1 using the Site of Service Based RVU (No GPCI applied) with a conversion factor of $59.00", + null, + "N", + "N", + "Y", + "N", + "Fee Schedule", + "59.0", + null, + null, + "2018 RBRVS version as printed in the Federal Register January 1", + "RBRVS", + "2018", + null, + "70010-79999", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "20.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1782", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Anesthesia", + "maximum plan allowable shall be the lesser of Provider's Billed Charges or the fee schedule set forth below Reimbursement will be based upon the 2018 RBRVS version as printed in the Federal Register January 1 using the Site of Service Based RVU (No GPCI applied) with a conversion factor of $47.00. Anesthesia will be reimbursed on Anesthesia Relative Value Units. Most current ASA methodology for standard AMA defined codes in the range 00100 through 01999. ASA time units will be based on 15 minute time intervals.", + null, + "N", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + "Anesthesia Relative Value Units", + "ASA", + "Most current", + null, + "['00100'-'01999']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "20.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1783", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Anesthesia", + "maximum plan allowable shall be the lesser of Provider's Billed Charges or the fee schedule set forth below Reimbursement will be based upon the 2018 RBRVS version as printed in the Federal Register January 1 using the Site of Service Based RVU (No GPCI applied) with a conversion factor of $47.00. Anesthesia will be reimbursed on Anesthesia Relative Value Units. Most current ASA methodology for standard AMA defined codes in the range 00100 through 01999. ASA time units will be based on 15 minute time intervals.", + null, + "N", + "N", + "Y", + "N", + "Fee Schedule", + "47.0", + null, + null, + "Anesthesia Relative Value Units", + "ASA", + "Most current", + null, + "['00100'-'01999']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "20.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1784", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Covered services performed by Mid-Level Professionals", + "eighty five percent (85%) of the Maximum Fees. This applies to allowed amounts that are calculated using an RVU/ Conversion Factor methodology. maximum plan allowable shall be the lesser of Provider's Billed Charges", + null, + "Y", + "N", + "Y", + "N", + "Fee Schedule", + null, + "85", + null, + "Maximum Fees", + "RVU", + "current", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "20.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1785", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Covered services performed by Mid-Level Professionals", + "eighty five percent (85%) of the Maximum Fees. This applies to allowed amounts that are calculated using an RVU/ Conversion Factor methodology. maximum plan allowable shall be the lesser of Provider's Billed Charges", + null, + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "20.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1786", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Hearing Aids", + "Reimbursement of Hearing Aids will be paid at one hundred (100%) percent of billed charges, not to exceed acquisition cost, plus five (5%) percent.", + null, + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "V5120-V5267", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "21.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1787", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Hearing Aids", + "Reimbursement of Hearing Aids will be paid at one hundred (100%) percent of billed charges, not to exceed acquisition cost, plus five (5%) percent.", + null, + "Y", + "N", + "Y", + "N", + "Cost Plus", + null, + "105", + null, + null, + null, + null, + null, + "V5120-V5267", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "21.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "Y", + null, + null + ], + [ + "1788", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Hearing Aid Services", + "Fitting, Orientation and Checking of Hearing Aids is considered a miscellaneous charge. These services are reimbursed using the Medicine Conversion Factor and are subject to any Hearing Aid benefit limitation.", + null, + "Y", + "N", + "Y", + "N", + "Fee Schedule", + null, + "100", + null, + "Medicine Conversion Factor", + "CONVERSION_FACTOR", + "current", + null, + "V5298-V5299", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "21.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1789", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Hearing Aid Services", + "Fitting, Orientation and Checking of Hearing Aids is considered a miscellaneous charge. These services are reimbursed using the Medicine Conversion Factor and are subject to any Hearing Aid benefit limitation.", + null, + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "V5298-V5299", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "21.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1790", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Unlisted Procedures and/or Supplies (not including Hearing Aids)", + "Unlisted procedures will be allowed at sixty percent (60%) of billed charges for medically necessary supplies or unlisted procedures (a procedure without a Relative Value Unit).", + "UNLISTED_CODE", + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "60", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "21.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1791", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Unlisted Procedures and/or Supplies (not including Hearing Aids)", + "Unlisted procedures will be allowed at sixty percent (60%) of billed charges for medically necessary supplies or unlisted procedures (a procedure without a Relative Value Unit).", + "UNLISTED_CODE", + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "21.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1792", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Pharmaceuticals (including Injectables and Cancer Drugs)", + "Moda Health shall compensate Provider at one hundred percent (100%) of the then-current Medicare Part B Drug Schedule for medications that require administration by a licensed professional in the medical setting, as labeled by the Food and Drug Administration (FDA). In the event the medication does not appear on the Medicare Part B Drug Schedule, reimbursement will be based on 100% of the Wholesale Acquisition Cost (WAC).", + null, + "Y", + "N", + "Y", + "N", + "Fee Schedule", + null, + "100", + null, + "Medicare Part B Drug Schedule", + "MEDICARE", + "then-current", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "21.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1793", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Pharmaceuticals (including Injectables and Cancer Drugs)", + "Moda Health shall compensate Provider at one hundred percent (100%) of the then-current Medicare Part B Drug Schedule for medications that require administration by a licensed professional in the medical setting, as labeled by the Food and Drug Administration (FDA). In the event the medication does not appear on the Medicare Part B Drug Schedule, reimbursement will be based on 100% of the Wholesale Acquisition Cost (WAC).", + null, + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "21.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1794", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Pharmaceuticals (including Injectables and Cancer Drugs)", + "Moda Health shall compensate Provider at one hundred percent (100%) of the then-current Medicare Part B Drug Schedule for medications that require administration by a licensed professional in the medical setting, as labeled by the Food and Drug Administration (FDA). In the event the medication does not appear on the Medicare Part B Drug Schedule, reimbursement will be based on 100% of the Wholesale Acquisition Cost (WAC).", + null, + "Y", + "N", + "Y", + "N", + "WAC", + null, + "100", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "21.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1795", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Pharmaceuticals (including Injectables and Cancer Drugs)", + "Moda Health shall compensate Provider at one hundred percent (100%) of the then-current Medicare Part B Drug Schedule for medications that require administration by a licensed professional in the medical setting, as labeled by the Food and Drug Administration (FDA). In the event the medication does not appear on the Medicare Part B Drug Schedule, reimbursement will be based on 100% of the Wholesale Acquisition Cost (WAC).", + null, + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "21.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1796", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Durable Medical Equipment (DME) (not including Hearing Aids)", + "DME will be reimbursed at ninety five percent (95%) of the current Medicare DMEPOS schedule, available as of January 1. Moda Health will not implement Medicare quarterly updates. For rental DME, Moda Health will pay the lesser of the amount required to purchase the DME or rental charges for DME, up to the maximum rental period for DME as defined by CMS.", + null, + "N", + "N", + "Y", + "N", + "Fee Schedule", + null, + "95", + null, + "current Medicare DMEPOS schedule", + "MEDICARE", + "current", + null, + "E0100-E8002", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "21.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1797", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Durable Medical Equipment (DME) (not including Hearing Aids)", + "DME will be reimbursed at ninety five percent (95%) of the current Medicare DMEPOS schedule, available as of January 1. Moda Health will not implement Medicare quarterly updates. For rental DME, Moda Health will pay the lesser of the amount required to purchase the DME or rental charges for DME, up to the maximum rental period for DME as defined by CMS.", + null, + "N", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "E0100-E8002", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "21.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1798", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Rental Durable Medical Equipment (DME) (not including Hearing Aids)", + "For rental DME, Moda Health will pay the lesser of the amount required to purchase the DME or rental charges for DME, up to the maximum rental period for DME as defined by CMS.", + null, + "N", + "N", + "Y", + "N", + "Per Diem Rate", + null, + "100", + null, + "Amount to Purchase", + null, + null, + null, + "E0100-E8002", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "21.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1799", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Rental Durable Medical Equipment (DME) (not including Hearing Aids)", + "For rental DME, Moda Health will pay the lesser of the amount required to purchase the DME or rental charges for DME, up to the maximum rental period for DME as defined by CMS.", + null, + "N", + "N", + "Y", + "N", + "Per Diem Rate", + null, + "100", + null, + "Rental Charges", + null, + null, + null, + "E0100-E8002", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "21.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1800", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Surgery", + "For inpatient and outpatient services, all subsequent procedures performed on the same day as primary procedures will be reimbursed at 50% of the allowed amount for the procedure.", + "MULTIPLE_PROCEDURE_REDUCTIONS", + "Y", + "N", + "N", + "N", + "Allowed Amount", + null, + "50", + null, + null, + null, + null, + null, + "10004-69990", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT B", + "21.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1801", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Psychiatric Diagnostic Evaluation", + "the lesser of: (i) $139.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Flat Rate", + "139.0", + null, + null, + null, + null, + null, + null, + "['90791']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1802", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Psychiatric Diagnostic Evaluation", + "the lesser of: (i) $139.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "['90791']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1803", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Psychotherapy 30 minutes", + "the lesser of: (i) $52.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Flat Rate", + "52.0", + null, + null, + null, + null, + null, + null, + "['90832']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1804", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Psychotherapy 30 minutes", + "the lesser of: (i) $52.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "['90832']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1805", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Psychotherapy 45 minutes", + "the lesser of: (i) $89.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Flat Rate", + "89.0", + null, + null, + null, + null, + null, + null, + "['90834']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1806", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Psychotherapy 45 minutes", + "the lesser of: (i) $89.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "['90834']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1807", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Psychotherapy 60 minutes", + "the lesser of: (i) $93.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Flat Rate", + "93.0", + null, + null, + null, + null, + null, + null, + "['90837']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1808", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Psychotherapy 60 minutes", + "the lesser of: (i) $93.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "['90837']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1809", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Psychotherapy for crisis: first 60 minutes", + "the lesser of: (i) $104.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Flat Rate", + "104.0", + null, + null, + null, + null, + null, + null, + "['90839']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1810", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Psychotherapy for crisis: first 60 minutes", + "the lesser of: (i) $104.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "['90839']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1811", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Psychotherapy for crisis: each additional 30 minutes", + "the lesser of: (i) $52.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Flat Rate", + "52.0", + null, + null, + null, + null, + null, + null, + "['90840']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1812", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Psychotherapy for crisis: each additional 30 minutes", + "the lesser of: (i) $52.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "['90840']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1813", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Family Psychotherapy--Client not present", + "the lesser of: (i) $98.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Flat Rate", + "98.0", + null, + null, + null, + null, + null, + null, + "['90846']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1814", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Family Psychotherapy--Client not present", + "the lesser of: (i) $98.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "['90846']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1815", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Family Psychotherapy", + "the lesser of: (i) $100.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Flat Rate", + "100.0", + null, + null, + null, + null, + null, + null, + "90847", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1816", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Family Psychotherapy", + "the lesser of: (i) $100.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "90847", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1817", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Multiple-family group psychotherapy", + "the lesser of: (i) $46.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Flat Rate", + "46.0", + null, + null, + null, + null, + null, + null, + "['90849']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1818", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Multiple-family group psychotherapy", + "the lesser of: (i) $46.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "['90849']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1819", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Group Psychotherapy", + "the lesser of: (i) $46.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Flat Rate", + "46.0", + null, + null, + null, + null, + null, + null, + "90853", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1820", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Group Psychotherapy", + "the lesser of: (i) $46.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "90853", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1821", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Health and behavior assessment, initial assessment, per 15 minutes", + "the lesser of: (i) $21.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Flat Rate", + "21.0", + null, + null, + null, + null, + null, + null, + "['96150']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ], + [ + "1822", + "943455260", + null, + null, + null, + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER AGREEMENT FOR COMMERCIAL BENEFIT PLANS", + "2018-09-15 00:00:00", + "12 months", + "will automatically extend and continue in effect for successive renewal terms of twelve (12) month", + "Y", + "Professional", + null, + "Moda Health Plan, Inc.", + "Bandon Community Health Center DBA Coast Community Health Center", + null, + "Custom_2018-09-15 COMM Agmt FE - Bandon Community Health Center dba Coast Community Health Center.txt", + "Licensed Professional Counselor; Licensed Marriage & Family Therapist; Licensed Clinical Social Worker; Licensed Psychologist Associate - Health and behavior assessment, initial assessment, per 15 minutes", + "the lesser of: (i) $21.00 or (ii) 100% of Provider's Covered Billed Charges.", + null, + "Y", + "N", + "Y", + "N", + "Billed Charges", + null, + "100", + null, + null, + null, + null, + null, + "['96150']", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "EXHIBIT C", + "22.0", + "Commercial", + "CONNEXUS, BEACON, SYNERGY, CCN, OHSU PPO", + null, + null, + "M", + "Test-Client", + "9999-09-15 00:00:00", + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + null, + "DocziAI_2-12.xlsx", + null, + null, + null, + null, + null, + null, + "N", + null, + null + ] + ], + "shape": { + "columns": 83, + "rows": 1505 + } + }, + "text/html": [ + "
| \n", + " | PROV_GROUP_TIN | \n", + "PROV_TIN_OTHER | \n", + "PROV_GROUP_NPI | \n", + "PROV_NPI_OTHER | \n", + "CONTRACT_TITLE | \n", + "CONTRACT_EFFECTIVE_DT | \n", + "CONTRACT_AUTO_RENEWAL_TERM | \n", + "CONTRACT_TERMINATION_DT | \n", + "CONTRACT_AUTO_RENEWAL_IND | \n", + "CONTRACT_CLAIM_TYPE_CD | \n", + "... | \n", + "data_source | \n", + "1861445421 | \n", + "DIAG_CD_LIST | \n", + "REIMBURSEMENT_PROV_NAME | \n", + "AARETE_DERIVED_PROV_TYPE | \n", + "Lesser of | \n", + "JD NOTE, Action Required | \n", + "NOT_TO_EXCEED | \n", + "REIMBURSEMENT_EFFECTIVE_DT | \n", + "REIMBURSEMENT_TERMINATION_DT | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1773 | \n", + "943455260 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER ... | \n", + "2018-09-15 00:00:00 | \n", + "12 months | \n", + "will automatically extend and continue in effe... | \n", + "Y | \n", + "Professional | \n", + "... | \n", + "DocziAI_2-12.xlsx | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "N | \n", + "NaT | \n", + "NaT | \n", + "
| 1774 | \n", + "943455260 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER ... | \n", + "2018-09-15 00:00:00 | \n", + "12 months | \n", + "will automatically extend and continue in effe... | \n", + "Y | \n", + "Professional | \n", + "... | \n", + "DocziAI_2-12.xlsx | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "N | \n", + "NaT | \n", + "NaT | \n", + "
| 1775 | \n", + "943455260 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER ... | \n", + "2018-09-15 00:00:00 | \n", + "12 months | \n", + "will automatically extend and continue in effe... | \n", + "Y | \n", + "Professional | \n", + "... | \n", + "DocziAI_2-12.xlsx | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "N | \n", + "NaT | \n", + "NaT | \n", + "
| 1776 | \n", + "943455260 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER ... | \n", + "2018-09-15 00:00:00 | \n", + "12 months | \n", + "will automatically extend and continue in effe... | \n", + "Y | \n", + "Professional | \n", + "... | \n", + "DocziAI_2-12.xlsx | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "N | \n", + "NaT | \n", + "NaT | \n", + "
| 1777 | \n", + "943455260 | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "MODA HEALTH PLAN, INC. PARTICIPATING PROVIDER ... | \n", + "2018-09-15 00:00:00 | \n", + "12 months | \n", + "will automatically extend and continue in effe... | \n", + "Y | \n", + "Professional | \n", + "... | \n", + "DocziAI_2-12.xlsx | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "N | \n", + "NaT | \n", + "NaT | \n", + "
| ... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "... | \n", + "
| 3273 | \n", + "141338470 | \n", + "NaN | \n", + "1932182599, 1285601237, 1447227491 | \n", + "NaN | \n", + "AMENDMENT TO THE STANDARD HOSPITAL PROVIDER AG... | \n", + "2016-01-01 00:00:00 | \n", + "NaN | \n", + "NaN | \n", + "N | \n", + "Institutional | \n", + "... | \n", + "DocziAI_2-12.xlsx | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "500 | \n", + "NaT | \n", + "NaT | \n", + "
| 3274 | \n", + "141338470 | \n", + "NaN | \n", + "1932182599, 1285601237, 1447227491 | \n", + "NaN | \n", + "AMENDMENT TO THE STANDARD HOSPITAL PROVIDER AG... | \n", + "2016-01-01 00:00:00 | \n", + "NaN | \n", + "NaN | \n", + "N | \n", + "Institutional | \n", + "... | \n", + "DocziAI_2-12.xlsx | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "500 | \n", + "NaT | \n", + "NaT | \n", + "
| 3275 | \n", + "141338470 | \n", + "NaN | \n", + "1932182599, 1285601237, 1447227491 | \n", + "NaN | \n", + "AMENDMENT TO THE STANDARD HOSPITAL PROVIDER AG... | \n", + "2016-01-01 00:00:00 | \n", + "NaN | \n", + "NaN | \n", + "N | \n", + "Institutional | \n", + "... | \n", + "DocziAI_2-12.xlsx | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaT | \n", + "NaT | \n", + "
| 3276 | \n", + "141338470 | \n", + "NaN | \n", + "1932182599, 1285601237, 1447227491 | \n", + "NaN | \n", + "AMENDMENT TO THE STANDARD HOSPITAL PROVIDER AG... | \n", + "2016-01-01 00:00:00 | \n", + "NaN | \n", + "NaN | \n", + "N | \n", + "Institutional | \n", + "... | \n", + "DocziAI_2-12.xlsx | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaT | \n", + "NaT | \n", + "
| 3277 | \n", + "141338470 | \n", + "NaN | \n", + "1932182599, 1285601237, 1447227491 | \n", + "NaN | \n", + "AMENDMENT TO THE STANDARD HOSPITAL PROVIDER AG... | \n", + "2016-01-01 00:00:00 | \n", + "NaN | \n", + "NaN | \n", + "N | \n", + "Institutional | \n", + "... | \n", + "DocziAI_2-12.xlsx | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaN | \n", + "NaT | \n", + "NaT | \n", + "
1505 rows × 83 columns
\n", + "